API

Get realtime count

GEThttps://api.visitors.now/v1/project/count

Returns the number of visitors currently online.

Request

index.ts
const res = await fetch("https://api.visitors.now/v1/project/count", {
  headers: { Authorization: `Bearer ${VISITORS_API_KEY}` },
});

const data = await res.json();

Response

{
  "count": 42
}

Response fields

count

number

Number of visitors currently online (active in the last 5 minutes).