Skip to main content
GET
/
api
/
v1
/
radar
/
last-visitors
Last visitors
curl --request GET \
  --url https://taap.it/api/v1/radar/last-visitors \
  --header 'Authorization: <authorization>'
{
  "data": [
    {}
  ],
  "windowMinutes": 123
}
Returns the visitors that were active within the last minutes. This is a live feed; responses are never cached.
This endpoint is meant for live dashboards. It consumes quota on every call — avoid polling more than once per minute. See Rate limits.
Request:
cURL
curl -X GET 'https://taap.it/api/v1/radar/last-visitors?minutes=5' \
  -H 'Authorization: Bearer taapit_your_api_key_here'
Response:
{
  "data": [
    {
      "visitorId": "v_8a1c2d",
      "countryCode": "FR",
      "city": "Paris",
      "page": "/pricing",
      "referrer": "google",
      "device": "mobile",
      "lastSeen": "2026-01-28T17:42:10.000Z"
    }
  ],
  "windowMinutes": 5
}

Authorization

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

Query Parameters

minutes
integer
default:"5"
Rolling window in minutes. Minimum 1, maximum 60.

Response Fields

data
array
required
Visitors active in the window, ordered by most recent activity. Each entry includes the visitor’s location, current page, referrer and device.
windowMinutes
integer
The window size applied to this response.