Endpoint Playground
Test Crawlora's BBB Business 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?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": {
"name": "Calixto Plumbing",
"url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803",
"category": "Plumber",
"categories": [
"Plumber",
"Plumbing Renovation",
"Commercial Plumber"
],
"rating": "A+",
"rating_reasons": [
"Customer Reviews are not used in the calculation of the BBB Letter Grade Rating."
],
"more_info_url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803/more-info#bbb-rating",
"accredited": true,
"accredited_since": "1/16/2024",
"years_in_business": "3",
"phone": "(512) 945-3143",
"website": "https://calixtoplumbing.com/",
"address": "8410 Georgian Dr # B, Austin, TX 78753-6003",
"local_bbb": "BBB Heart of Texas",
"local_bbb_url": "https://www.bbb.org/local-bbb/bbb-serving-the-heart-of-texas",
"bbb_file_opened": "1/16/2024",
"business_started": "3/14/2023",
"business_incorporated": "3/14/2023",
"entity_type": "Limited Liability Company (LLC)",
"business_management": "Mr. Omar Calixto Cordoba, Owner/Manager",
"licensing_note": "This business is in an industry that may require professional licensing, bonding or registration. BBB encourages you to check with the appropriate agency to be certain any requirements are currently being met.",
"latest_reviews": [
{
"author": "Karey R",
"quote": "This company charged me $2800 to replace a water heater. That was outrageous!"
}
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803"
}
}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 normalized bbb.org business profile: BBB rating letter grade and reasons, accreditation status and since-date, years in business, BBB file/incorporation dates, entity type, contact info, business categories, social media, and a short latest-reviews preview. Credential-free public Better Business Bureau data.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Calixto Plumbing",
"url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803",
"category": "Plumber",
"categories": [
"Plumber",
"Plumbing Renovation",
"Commercial Plumber"
],
"rating": "A+",
"rating_reasons": [
"Customer Reviews are not used in the calculation of the BBB Letter Grade Rating."
],
"more_info_url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803/more-info#bbb-rating",
"accredited": true,
"accredited_since": "1/16/2024",
"years_in_business": "3",
"phone": "(512) 945-3143",
"website": "https://calixtoplumbing.com/",
"address": "8410 Georgian Dr # B, Austin, TX 78753-6003",
"local_bbb": "BBB Heart of Texas",
"local_bbb_url": "https://www.bbb.org/local-bbb/bbb-serving-the-heart-of-texas",
"bbb_file_opened": "1/16/2024",
"business_started": "3/14/2023",
"business_incorporated": "3/14/2023",
"entity_type": "Limited Liability Company (LLC)",
"business_management": "Mr. Omar Calixto Cordoba, Owner/Manager",
"licensing_note": "This business is in an industry that may require professional licensing, bonding or registration. BBB encourages you to check with the appropriate agency to be certain any requirements are currently being met.",
"latest_reviews": [
{
"author": "Karey R",
"quote": "This company charged me $2800 to replace a water heater. That was outrageous!"
}
],
"source_url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803"
}
}curl "https://api.crawlora.net/api/v1/bbb/business?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"