Endpoint Playground
Test Crawlora's Facet stored Google Maps businesses 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/datasets/google-map-businesses/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: category, country, state, county, city, town, website_status | |
| q | string | No | Full-text business search query, max 256 characters | |
| category | string | No | Exact category filter, max 128 characters | |
| country | string | No | Exact country filter, max 128 characters | |
| state | string | No | Exact state filter, max 128 characters | |
| county | string | No | Exact county filter, max 128 characters | |
| city | string | No | Exact city filter, max 128 characters | |
| town | string | No | Exact town filter, max 128 characters | |
| min_rating | number | No | Minimum rating, 0 through 5 | |
| min_review_count | integer | No | Minimum review count | |
| has_website | boolean | No | Filter by website presence | |
| has_phone | boolean | No | Filter by phone presence | |
| lat | number | No | Latitude for radius filtering | |
| lon | number | No | Longitude for radius filtering | |
| radius_m | integer | No | Radius in meters, 1 through 50000; requires lat and lon when supplied | |
| sort | string | No | Sort enum: relevance, updated_at_desc, rating_desc, review_count_desc, distance_asc |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "google-map-businesses",
"facet": "city",
"items": [
{
"value": "San Francisco",
"count": 42
}
]
}
}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 terms aggregation counts for Google Maps businesses. Facet enum: `category`, `country`, `state`, `county`, `city`, `town`, `website_status`.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "google-map-businesses",
"facet": "city",
"items": [
{
"value": "San Francisco",
"count": 42
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/google-map-businesses/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"