Endpoint Playground
Test Crawlora's BBB Category 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/bbb/category?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | BBB category browse URL, from a bbb-search result's related_categories | |
| page | integer | No | Result page, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"total_results": 2398,
"results": [
{
"name": "Abundant Plumbing LLC",
"url": "https://www.bbb.org/us/tx/austin/profile/plumber/abundant-plumbing-llc-0825-1000237688",
"categories": [
"Plumber"
],
"rating": "A-",
"accredited": true,
"phone": "(512) 201-9978",
"address": "PO Box 40698, Austin, TX 78704-0012"
}
],
"source_url": "https://www.bbb.org/us/tx/austin/category/plumber"
}
}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.
Browses bbb.org businesses by category and location directly, without a free-text search query. Returns the same normalized business-result shape as bbb-search. Credential-free public Better Business Bureau data.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"total_results": 2398,
"results": [
{
"name": "Abundant Plumbing LLC",
"url": "https://www.bbb.org/us/tx/austin/profile/plumber/abundant-plumbing-llc-0825-1000237688",
"categories": [
"Plumber"
],
"rating": "A-",
"accredited": true,
"phone": "(512) 201-9978",
"address": "PO Box 40698, Austin, TX 78704-0012"
}
],
"source_url": "https://www.bbb.org/us/tx/austin/category/plumber"
}
}curl "https://api.crawlora.net/api/v1/bbb/category?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"