Skip to main content

City

City List

Use this API to list all cities based on a state.

 GET /city/city-list

Query string parameters

FieldTypeDescription
stateId
required
integerState ID
qstringfilter data by city name
{
"success": true,
"data": {
"response": {
"acknowledgement": "Success",
"data": {
"cityList": [
{
"cityId": 1,
"name": "San Francisco"
},
],
"totalRecords": 1
},
"error": {
"code": "",
"internal_message": "",
"moreInfo": []
}
}
}
}