All requests below will use this key. Your API key is sent directly to api.cueapi.ai and never stored by the docs site.

Test Your Key

Paste your API key and verify it works instantly.

Test your API key

Verify your API key works by making a request to GET /v1/auth/me.

Try it

bash
curl https://api.cueapi.ai/v1/auth/me \
  -H "Authorization: Bearer cue_sk_YOUR_KEY_HERE"

Success response (200)

json
{
  "id": "user-uuid",
  "email": "you@example.com",
  "plan": "free",
  "has_webhook_secret": true,
  "active_cues": 3,
  "monthly_executions": 42
}

Failure response (401)

json
{
  "error": {
    "code": "invalid_api_key",
    "message": "Invalid or missing API key",
    "status": 401
  }
}

Tip

Use the API Playground on the Current User endpoint to test your key interactively. Paste your key into the Authorization header and click "Send".

Common issues

SymptomCauseFix
401 UnauthorizedInvalid or expired keyCheck for typos or regenerate
429 Too Many RequestsRate limit exceededWait for Retry-After seconds
Connection timeoutNetwork issueCheck your internet connection
Key starts with cue_sk_Correct formatKeys always start with cue_sk_

Test your API key