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.

email
string
required
Email used in the link request
code
string
required
6-digit verification code from email
curl -X POST https://api.usenaive.ai/v1/auth/verify \
  -H "Content-Type: application/json" \
  -d '{ "email": "existing@example.com", "code": "482901" }'
{
  "api_key": "nv_sk_live_...",
  "agent_id": "uuid",
  "companies": [
    { "id": "uuid", "name": "Acme Corp", "prefix": "acme" },
    { "id": "uuid", "name": "Side Project", "prefix": "side" }
  ],
  "hint": "Select a company with POST /v1/auth/select-company"
}

Notes

  • Returns an API key bound to the first company
  • If the user has multiple companies, select one with /v1/auth/select-company