Skip to main content
GET
/
api
/
v1
/
radar
/
timeseries
Time series
curl --request GET \
  --url https://taap.it/api/v1/radar/timeseries \
  --header 'Authorization: <authorization>'
{
  "data": [
    {
      "t": "<string>",
      "people": 123,
      "visits": 123,
      "pageviews": 123,
      "events": 123,
      "revenue": 123
    }
  ]
}
Returns the core metrics bucketed over time for the project bound to your API key. The bucket granularity is derived automatically from the requested range. Request:
cURL
curl -X GET 'https://taap.it/api/v1/radar/timeseries?start=2026-01-01T00:00:00Z&end=2026-01-07T23:59:59Z' \
  -H 'Authorization: Bearer taapit_your_api_key_here'
Response:
{
  "data": [
    {
      "t": "2026-01-01 00:00:00",
      "people": 120,
      "visits": 180,
      "pageviews": 540,
      "events": 32,
      "revenue": 210.0
    },
    {
      "t": "2026-01-02 00:00:00",
      "people": 96,
      "visits": 140,
      "pageviews": 410,
      "events": 21,
      "revenue": 0
    }
  ]
}

Authorization

Authorization
string
required
Bearer token with your Radar API key. Format: Bearer taapit_...

Query Parameters

start
string
required
Start of the range, ISO 8601 (UTC). Example: 2026-01-01T00:00:00Z.
end
string
required
End of the range, ISO 8601 (UTC). Example: 2026-01-07T23:59:59Z.

Response Fields

data
array
required
An ordered array of data points.