Endpoint Playground
Test Crawlora's BBB Scam Tracker State Stats 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/scamtracker/state-stats?period=30" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| period | string | No | 30 | Aggregation window, default 90 |
{
"code": 200,
"msg": "OK",
"data": {
"period": "90",
"aggregated_at": "2026-08-20T03:00:22.405Z",
"states": [
{
"country": "USA",
"code": "TX",
"name": "Texas",
"reports": 4085,
"reports_with_loss": 1950,
"pct_reporting_loss": 47.7,
"losses": 3163720,
"median_loss": 97,
"population": 30503301,
"reports_per_capita": 0.0001339199321411148,
"losses_per_capita": 0.10371729931786727,
"yoy_change_pct": -3.4,
"top_scam_type": "Online Purchase",
"scam_type_breakdown": [
{
"type": "Online Purchase",
"count": 1177,
"pct": 32.9
},
{
"type": "Other",
"count": 626,
"pct": 17.5
}
]
}
]
}
}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 aggregate scam-report stats per US state and Canadian province for a given time window: report counts, dollar losses, per-capita rates, year-over-year change, and top scam-type breakdown. This calls the same JSON API the BBB Scam Tracker heatmap dashboard's own frontend uses -- not an HTML scrape. Credential-free public Better Business Bureau data.
{
"code": 200,
"msg": "OK",
"data": {
"period": "90",
"aggregated_at": "2026-08-20T03:00:22.405Z",
"states": [
{
"country": "USA",
"code": "TX",
"name": "Texas",
"reports": 4085,
"reports_with_loss": 1950,
"pct_reporting_loss": 47.7,
"losses": 3163720,
"median_loss": 97,
"population": 30503301,
"reports_per_capita": 0.0001339199321411148,
"losses_per_capita": 0.10371729931786727,
"yoy_change_pct": -3.4,
"top_scam_type": "Online Purchase",
"scam_type_breakdown": [
{
"type": "Online Purchase",
"count": 1177,
"pct": 32.9
},
{
"type": "Other",
"count": 626,
"pct": 17.5
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/bbb/scamtracker/state-stats" \
-H "x-api-key: $CRAWLORA_API_KEY"