Skip to main content
GET
/
v1
/
agents
curl https://api.quintai.dev/v1/agents \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "agents": [
    {
      "id": "claude-code",
      "platform": "claude-code",
      "signing_id": "com.anthropic.claude-code",
      "first_seen": "2026-04-10T09:00:00Z",
      "last_seen": "2026-04-12T15:30:00Z"
    },
    {
      "id": "cursor",
      "platform": "cursor",
      "signing_id": "com.todesktop.cursor",
      "first_seen": "2026-04-11T10:00:00Z",
      "last_seen": "2026-04-12T14:00:00Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Requires Authorization: Bearer header with a deploy token (qt_deploy_*) or Supabase JWT.

Response

agents
array
Array of detected agent records.
curl https://api.quintai.dev/v1/agents \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "agents": [
    {
      "id": "claude-code",
      "platform": "claude-code",
      "signing_id": "com.anthropic.claude-code",
      "first_seen": "2026-04-10T09:00:00Z",
      "last_seen": "2026-04-12T15:30:00Z"
    },
    {
      "id": "cursor",
      "platform": "cursor",
      "signing_id": "com.todesktop.cursor",
      "first_seen": "2026-04-11T10:00:00Z",
      "last_seen": "2026-04-12T14:00:00Z"
    }
  ]
}