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

# Get Agent

> Retrieve detail for a specific detected agent.

<Note>
  Requires `Authorization: Bearer` header with a deploy token (`qt_deploy_*`) or Supabase JWT.
</Note>

## Path Parameters

<ParamField path="id" type="string" required>
  Agent identifier.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Agent identifier.
</ResponseField>

<ResponseField name="platform" type="string">
  Agent platform (e.g., `claude-code`, `cursor`, `windsurf`).
</ResponseField>

<ResponseField name="signing_id" type="string">
  Code signing identity used for detection.
</ResponseField>

<ResponseField name="first_seen" type="datetime">
  When this agent was first detected.
</ResponseField>

<ResponseField name="last_seen" type="datetime">
  When this agent was most recently active.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.quintai.dev/v1/agents/claude-code \
    -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.quintai.dev/v1/agents/claude-code",
      headers={"Authorization": "Bearer qt_deploy_YOUR_TOKEN"},
  )
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
