Endpoint Playground
Test Crawlora's BBB Search 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/search?query=<query>&location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Business name or category/service keyword | |
| location | string | Yes | City and state (e.g. 'Austin, TX') or a ZIP code | |
| page | integer | No | Result page, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "plumber",
"location": "Austin, TX",
"page": 1,
"total_results": 2514,
"results": [
{
"name": "Calixto Plumbing",
"url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803",
"categories": [
"Plumber",
"Plumbing Renovation",
"Commercial Plumber"
],
"rating": "A+",
"accredited": true,
"phone": "(512) 945-3143",
"address": "8410 Georgian Dr # B, Austin, TX 78753-6003",
"image_url": "https://m.bbb.org/prod/ProfileImages/2024/1f7a8bd4-fdd2-45ca-8963-5c246e1d3b85.png?tx=w_80",
"service_areas": [
"Bell County, TX",
"Travis County, TX"
],
"quote_url": "https://www.bbb.org/central-texas/quote/request-calixto-plumbing-1000223803"
}
],
"source_url": "https://www.bbb.org/search?find_loc=Austin%2C+TX&find_text=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.
Searches bbb.org for businesses by name or category near a location. Returns each business's BBB rating letter grade, accreditation status, categories, service areas, contact info, and profile URL. Credential-free public Better Business Bureau data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "plumber",
"location": "Austin, TX",
"page": 1,
"total_results": 2514,
"results": [
{
"name": "Calixto Plumbing",
"url": "https://www.bbb.org/us/tx/austin/profile/plumber/calixto-plumbing-0825-1000223803",
"categories": [
"Plumber",
"Plumbing Renovation",
"Commercial Plumber"
],
"rating": "A+",
"accredited": true,
"phone": "(512) 945-3143",
"address": "8410 Georgian Dr # B, Austin, TX 78753-6003",
"image_url": "https://m.bbb.org/prod/ProfileImages/2024/1f7a8bd4-fdd2-45ca-8963-5c246e1d3b85.png?tx=w_80",
"service_areas": [
"Bell County, TX",
"Travis County, TX"
],
"quote_url": "https://www.bbb.org/central-texas/quote/request-calixto-plumbing-1000223803"
}
],
"source_url": "https://www.bbb.org/search?find_loc=Austin%2C+TX&find_text=plumber"
}
}curl "https://api.crawlora.net/api/v1/bbb/search?query=<query>&location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"