Skip to main content
GET
/
site
/
recent
Get Recent Sites
curl --request GET \
  --url https://{appDomain}/site/recent \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "model": "<string>",
    "version": "<string>",
    "ip_address": "127.0.0.1",
    "online": true,
    "last_seen": "10 minutes ago",
    "accessed_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Standard JWT token obtained via a separate authentication process. Required for most user-facing API endpoints.

Response

A list of recently accessed sites.

id
string<uuid>
name
string
model
string | null
version
string | null
ip_address
string<ipv4> | null
online
boolean

Whether the site currently has a pulse.

last_seen
string | null

Human-readable time since last heartbeat.

Example:

"10 minutes ago"

accessed_at
string<date-time>

Timestamp when the user last accessed this site's details.

I