Endpoint Playground
Test Crawlora's Facet the BBB businesses dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/bbb-businesses/facets?facet=category&rating=A%2B" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | category | Facet enum: category, state, city, rating, accredited, entity_type, run_id |
| q | string | No | Full-text match on the business name/category, max 256 characters | |
| category | string | No | Exact category filter | |
| state | string | No | Exact 2-letter state/province filter | |
| city | string | No | Exact city filter | |
| rating | string | No | A+ | Exact letter-grade rating filter. Enum: A+, A, A-, B+, B, B-, C+, C, C-, D+, D, D-, F |
| accredited | boolean | No | Accreditation filter | |
| entity_type | string | No | Exact entity-type filter | |
| run_id | string | No | Exact crawl run id filter |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "bbb-businesses",
"facet": "rating",
"items": [
{
"value": "A+",
"count": 512
},
{
"value": "A",
"count": 210
},
{
"value": "A-",
"count": 88
},
{
"value": "B+",
"count": 34
}
]
}
}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 distribution counts over the BBB businesses index (dataset id enum value `bbb-businesses`), honoring the same filters as search. Facet enum: `category`, `state`, `city`, `rating`, `accredited`, `entity_type`, `run_id`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "bbb-businesses",
"facet": "rating",
"items": [
{
"value": "A+",
"count": 512
},
{
"value": "A",
"count": 210
},
{
"value": "A-",
"count": 88
},
{
"value": "B+",
"count": 34
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/bbb-businesses/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"