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
| Symptom | Cause | Fix |
|---|---|---|
401 Unauthorized | Invalid or expired key | Check for typos or regenerate |
429 Too Many Requests | Rate limit exceeded | Wait for Retry-After seconds |
| Connection timeout | Network issue | Check your internet connection |
Key starts with cue_sk_ | Correct format | Keys always start with cue_sk_ |