Endpoint Playground
Test Crawlora's BBB Business Complaints 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/complaints?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 |
{
"code": 200,
"msg": "OK",
"data": {
"business_name": "Abacus Plumbing, Air Conditioning & Electrical",
"total_complaints": 8,
"period_text": "in the last 3 years.",
"closed_last_12_months": 2,
"submit_complaint_url": "https://www.bbb.org/file-a-complaint/0825-1000193414",
"complaints": [
{
"id": "0825_1000193414_24518957",
"date": "02/12/2026",
"type": "Service or Repair Issues",
"status": "Answered",
"text": "Abacus installed a Navien tankless water heater at my house...",
"business_responses": [
{
"date": "04/08/2026",
"text": "Dear Mr. REMOVED you for the opportunity to respond to your concerns..."
}
]
}
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumbing-and-heating/abacus-plumbing-air-conditioning-electrical-0825-1000193414/complaints"
}
}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 BBB complaint history: total complaint count, complaints closed in the last 12 months, and per-complaint detail (date, type, status, narrative text, and any business response / customer answer thread). A business with no filed complaints returns total_complaints 0 and an empty complaints list -- this is a normal result, not an error. Credential-free public Better Business Bureau data.
{
"code": 200,
"msg": "OK",
"data": {
"business_name": "Abacus Plumbing, Air Conditioning & Electrical",
"total_complaints": 8,
"period_text": "in the last 3 years.",
"closed_last_12_months": 2,
"submit_complaint_url": "https://www.bbb.org/file-a-complaint/0825-1000193414",
"complaints": [
{
"id": "0825_1000193414_24518957",
"date": "02/12/2026",
"type": "Service or Repair Issues",
"status": "Answered",
"text": "Abacus installed a Navien tankless water heater at my house...",
"business_responses": [
{
"date": "04/08/2026",
"text": "Dear Mr. REMOVED you for the opportunity to respond to your concerns..."
}
]
}
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumbing-and-heating/abacus-plumbing-air-conditioning-electrical-0825-1000193414/complaints"
}
}curl "https://api.crawlora.net/api/v1/bbb/business/complaints?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"