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

GET/v1/usage

Usage Stats

Get current plan, cue count, execution usage, and rate limit info.

Request

bash
curl https://api.cueapi.ai/v1/usage \
  -H "Authorization: Bearer cue_sk_YOUR_KEY"

Response

json
{
  "plan": {
    "name": "free",
    "interval": null
  },
  "cues": {
    "active": 3,
    "limit": 10
  },
  "executions": {
    "used": 42,
    "limit": 300
  },
  "rate_limit": {
    "limit": 60
  },
  "outcomes": {
    "reported": 38,
    "succeeded": 35,
    "failed": 3
  }
}
GET/v1/usage
Try it
Enter your API key above to send requests