Endpoint Playground
Test Crawlora's BBB Business More Info 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/more-info?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": "Calixto Plumbing",
"rating": "A+",
"rating_reasons": [
"Customer Reviews are not used in the calculation of the BBB Letter Grade Rating."
],
"service_areas": [
"Bell County, TX",
"Burnet County, TX",
"Lee County, TX",
"Milam County, TX",
"Travis County, TX",
"Williamson County, TX"
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803/more-info"
}
}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 per-factor "Reasons for Rating" list and full service-area list, from the separate BBB business profile /more-info sub-page. The bbb-business endpoint's own rating_reasons field is read from the main profile page and typically holds only one generic boilerplate bullet regardless of actual rating; this endpoint fetches the richer, business-specific list instead. Service area is business-conditional -- some businesses render no service-area section at all, in which case service_areas is empty. Credential-free public Better Business Bureau data.
{
"code": 200,
"msg": "OK",
"data": {
"business_name": "Calixto Plumbing",
"rating": "A+",
"rating_reasons": [
"Customer Reviews are not used in the calculation of the BBB Letter Grade Rating."
],
"service_areas": [
"Bell County, TX",
"Burnet County, TX",
"Lee County, TX",
"Milam County, TX",
"Travis County, TX",
"Williamson County, TX"
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803/more-info"
}
}curl "https://api.crawlora.net/api/v1/bbb/business/more-info?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"