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
NameTypeRequiredDescription
area_idstringrequiredThe area identifierExample: sandton
periodstringoptionalTime period (7d, 30d, 90d, 1y)Default: 30d
granularitystringoptionalData 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
}