Skip to main content
GET
/
v1
/
deploy-tokens
curl https://api.quintai.dev/v1/deploy-tokens \
  -H "Authorization: Bearer YOUR_SUPABASE_JWT"
{
  "tokens": [
    {
      "id": "a1b2c3d4-5678-9012-abcd-ef3456789012",
      "name": "dev-machine-01",
      "created_at": "2026-04-12T14:00:00Z",
      "last_used_at": "2026-04-12T15:30:00Z"
    },
    {
      "id": "b2c3d4e5-6789-0123-bcde-f45678901234",
      "name": "production-fleet",
      "created_at": "2026-04-10T09:00:00Z",
      "last_used_at": null
    }
  ]
}

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 Supabase JWT.

Response

tokens
array
Array of deploy token metadata. Raw token values are never returned after creation.
curl https://api.quintai.dev/v1/deploy-tokens \
  -H "Authorization: Bearer YOUR_SUPABASE_JWT"
{
  "tokens": [
    {
      "id": "a1b2c3d4-5678-9012-abcd-ef3456789012",
      "name": "dev-machine-01",
      "created_at": "2026-04-12T14:00:00Z",
      "last_used_at": "2026-04-12T15:30:00Z"
    },
    {
      "id": "b2c3d4e5-6789-0123-bcde-f45678901234",
      "name": "production-fleet",
      "created_at": "2026-04-10T09:00:00Z",
      "last_used_at": null
    }
  ]
}