List Cities

GET {{baseUrl}}/countries/:country/cities?page=1

This endpoint allows you to list all available cities for a specific country by providing the ID of the country you want to get its cities in the country path parameter.

💡 Note

Country details will also be returned in the payload.

Request Params

KeyDatatypeRequiredDescription
pagenumberThe Pagination page number

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{"status":200,"success":true,"data":[{"id":1,"name":"الرياض","name_en":"Riyadh"},{"id":2,"name":"جدة","name_en":"Jeddah"},{"id":3,"name":"مكة","name_en":"Mecca"},{"id":4,"name":"المدينة المنورة","name_en":"Medina"},{"id":5,"name":"الدمام","name_en":"Dammam"},{"id":6,"name":"الأحساء","name_en":"Al Ahsa"},{"id":7,"name":"القطيف","name_en":"Al Qatif"},{"id":8,"name":"خميس مشيط","name_en":"Khamis Mushait"},{"id":9,"name":"المظيلف","name_en":"Almuzaylif"},{"id":10,"name":"تبوك","name_en":"Tabuk"},{"id":11,"name":"الهفوف","name_en":"Al Hofuf"},{"id":12,"name":"المبرز","name_en":"Al Mubarraz"},{"id":13,"name":"نجران","name_en":"Najran"},{"id":14,"name":"حفر الباطن","name_en":"Hafar Al Batin"},{"id":15,"name":"الجبيل","name_en":"Al Jubail"}],"country":{"id":1473353380,"name":"السعودية","code":"SA"},"pagination":{"count":15,"total":716,"perPage":15,"currentPage":1,"totalPages":48,"links":{"next":"https://api.salla.dev/admin/v2/countries/1473353380/cities?page=2"}}}