Endpoint Playground
Test Crawlora's Apple Maps Categories 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/apple-maps/categories?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Center latitude | |
| longitude | number | Yes | Center longitude | |
| span | number | No | Viewport size in degrees around the center. Defaults to 0.05; minimum 0.001, maximum 5. | |
| lang | string | No | Display language as a BCP 47 tag. Defaults to en-US. | |
| country | string | No | Two-letter ISO 3166-1 country code. Defaults to US. |
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Fast Food"
},
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Restaurants"
},
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Coffee Shops"
},
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Gas Stations"
}
]
}
}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 the "Find Nearby" browse categories Apple Maps offers for an area (for example Restaurants, Coffee Shops, Gas Stations, Hotels, Parking, Grocery Stores), each with the key and name the category-search endpoint takes. The set is location-aware.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Fast Food"
},
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Restaurants"
},
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Coffee Shops"
},
{
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"name": "Gas Stations"
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/categories?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"