Search Places
GET
/api/geocoding/search
Search for cities, towns, and places by name. Returns coordinates and location details for use with calculation endpoints.
Authorizations
ApiKeyAuth
API key for authentication. Get your API key from the dashboard.
Type
API Key (header: X-Api-Key)
Parameters
Query Parameters
q*
Type
Requiredstring
Min Length
2Max Length
100limit
Type
string
lang
Type
string
api
Type
string
Responses
List of matching places with coordinates
application/json
JSON
{
"data": [
{
"id": "string",
"name": "string",
"displayName": "string",
"latitude": 0,
"longitude": 0,
"country": "string",
"countryCode": "string",
"state": "string",
"timezone": "string",
"city": "string"
}
]
}