Endpoint Playground
Test Crawlora's Wolt Cities API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/wolt/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | Optional ISO 3166-1 country code to restrict the directory to, alpha-2 (FI) or alpha-3 (FIN), case-insensitive. | |
| latitude | number | No | Optional reference latitude. Must be given together with longitude. | |
| longitude | number | No | Optional reference longitude. Must be given together with latitude. |
{
"code": 200,
"msg": "OK",
"data": {
"total_results": 2,
"country": "FI",
"cities": [
{
"id": "58da504ba3284104e807127d",
"name": "Helsinki",
"slug": "helsinki",
"country": "FI",
"country_iso3": "FIN",
"timezone": "Europe/Helsinki",
"latitude": 60.165,
"longitude": 24.94
},
{
"id": "5a5b1f8e2e114f000edb7601",
"name": "Espoo",
"slug": "espoo",
"country": "FI",
"country_iso3": "FIN",
"timezone": "Europe/Helsinki",
"latitude": 60.2055,
"longitude": 24.6559,
"distance_km": 9
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Wolt's own live directory of every city it operates in, each with the coordinate pair the rest of the Wolt endpoints take, plus its slug, country codes, and timezone. Every other Wolt endpoint is resolved purely from a coordinate, so this is the discovery step that makes them usable without an external geocoder. Optionally restrict to one country, or pass a reference coordinate to have each city carry its distance and the list returned nearest-first.
{
"code": 200,
"msg": "OK",
"data": {
"total_results": 2,
"country": "FI",
"cities": [
{
"id": "58da504ba3284104e807127d",
"name": "Helsinki",
"slug": "helsinki",
"country": "FI",
"country_iso3": "FIN",
"timezone": "Europe/Helsinki",
"latitude": 60.165,
"longitude": 24.94
},
{
"id": "5a5b1f8e2e114f000edb7601",
"name": "Espoo",
"slug": "espoo",
"country": "FI",
"country_iso3": "FIN",
"timezone": "Europe/Helsinki",
"latitude": 60.2055,
"longitude": 24.6559,
"distance_km": 9
}
]
}
}curl "https://api.crawlora.net/api/v1/wolt/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"