Endpoint Playground
Test Crawlora's BBB Business Reviews 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/business/reviews?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | BBB business profile URL, from a bbb-search result's url or hq_profile_url | |
| page | integer | No | Result page (10 per page), default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"average_rating": 4.73,
"total_reviews": 155,
"page": 1,
"total_pages": 16,
"reviews": [
{
"id": "0825_1000193414_579528",
"author": "Susan M",
"rating": 1,
"date": "2026-06-02",
"text": "Abacus Plumbing came to my house to unclog a drain and charged me $469.00. ...",
"responses": [
{
"title": "Abacus Plumbing, Air Conditioning & Electrical Response",
"text": "Hello ***** M, We're grateful for your feedback...",
"date": "2026-06-09",
"is_business": true
}
]
}
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumbing-and-heating/abacus-plumbing-air-conditioning-electrical-0825-1000193414/customer-reviews"
}
}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 a business's full customer-review list (author, star rating, date, text, and any business response thread), paginated 10 per page, plus the average star rating and total review count. Credential-free public Better Business Bureau data. Unlike the other bbb-business-* endpoints, this one is fetched with browser impersonation rather than plain direct HTTP -- see the family's maintenance note for why.
{
"code": 200,
"msg": "OK",
"data": {
"average_rating": 4.73,
"total_reviews": 155,
"page": 1,
"total_pages": 16,
"reviews": [
{
"id": "0825_1000193414_579528",
"author": "Susan M",
"rating": 1,
"date": "2026-06-02",
"text": "Abacus Plumbing came to my house to unclog a drain and charged me $469.00. ...",
"responses": [
{
"title": "Abacus Plumbing, Air Conditioning & Electrical Response",
"text": "Hello ***** M, We're grateful for your feedback...",
"date": "2026-06-09",
"is_business": true
}
]
}
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumbing-and-heating/abacus-plumbing-air-conditioning-electrical-0825-1000193414/customer-reviews"
}
}curl "https://api.crawlora.net/api/v1/bbb/business/reviews?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"