Skip to main content

Documentation Index

Fetch the complete documentation index at: https://usenaive.ai/docs/llms.txt

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

Create Key

POST /v1/auth/keys
name
string
Optional label for the key
{
  "api_key": "nv_sk_live_...",
  "key_id": "uuid",
  "name": "Production Key",
  "created_at": "2026-05-02T..."
}

List Keys

GET /v1/auth/keys
{
  "keys": [
    {
      "id": "uuid",
      "name": "Default Key",
      "last_4": "****",
      "created_at": "2026-05-01T...",
      "last_used_at": "2026-05-02T...",
      "revoked": false
    }
  ]
}

Revoke Key

DELETE /v1/auth/keys/:id
{ "id": "uuid", "revoked": true }