Area History
Track how an area's Truth Score has changed over time.
Track how an area's Truth Score has changed over time.
Growth Plan Required
Historical data is available on Growth plans and above.
Get Area History
Retrieve historical Truth Score data for an area.
GET
/v1/areas/{area_id}/history| Name | Type | Required | Description |
|---|---|---|---|
area_id | string | required | The area identifierExample: sandton |
period | string | optional | Time period (7d, 30d, 90d, 1y)Default: 30d |
granularity | string | optional | Data granularity (daily, weekly, monthly)Default: daily |
Example Response
JSON
{
"area_id": "sandton",
"period": "30d",
"history": [
{ "date": "2026-01-23", "truth_score": 8.2 },
{ "date": "2026-01-30", "truth_score": 8.3 },
{ "date": "2026-02-06", "truth_score": 8.4 },
{ "date": "2026-02-13", "truth_score": 8.4 },
{ "date": "2026-02-20", "truth_score": 8.4 }
],
"trend": "stable",
"change": 0.2
}