> ## Documentation Index
> Fetch the complete documentation index at: https://docs.taap.it/llms.txt
> Use this file to discover all available pages before exploring further.

# Last visitors

> Visitors active within the last few minutes (live feed)

Returns the visitors that were active within the last `minutes`. This is a live feed; responses
are never cached.

<Warning>
  This endpoint is meant for live dashboards. It consumes quota on every call — avoid polling more
  than once per minute. See [Rate limits](/api-reference/radar/introduction#rate-limits-quotas).
</Warning>

**Request:**

```bash cURL theme={null}
curl -X GET 'https://taap.it/api/v1/radar/last-visitors?minutes=5' \
  -H 'Authorization: Bearer taapit_your_api_key_here'
```

**Response:**

```json theme={null}
{
  "data": [
    {
      "visitorId": "v_8a1c2d",
      "countryCode": "FR",
      "city": "Paris",
      "page": "/pricing",
      "referrer": "google",
      "device": "mobile",
      "lastSeen": "2026-01-28T17:42:10.000Z"
    }
  ],
  "windowMinutes": 5
}
```

## Authorization

<ParamField header="Authorization" type="string" required>
  Bearer token with your Radar API key. Format: `Bearer taapit_...`
</ParamField>

## Query Parameters

<ParamField query="minutes" type="integer" default="5">
  Rolling window in minutes. Minimum `1`, maximum `60`.
</ParamField>

## Response Fields

<ResponseField name="data" type="array" required>
  Visitors active in the window, ordered by most recent activity. Each entry includes the
  visitor's location, current page, referrer and device.
</ResponseField>

<ResponseField name="windowMinutes" type="integer">
  The window size applied to this response.
</ResponseField>
