Skip to main content
Track your AI usage and costs.

Get current usage

GET /usage
Returns token usage and cost for the current billing period:
{
  "period_start": "2024-01-01T00:00:00Z",
  "period_end": "2024-02-01T00:00:00Z",
  "tokens": {
    "input": 125000,
    "output": 45000,
    "total": 170000
  },
  "cost_cents": 342,
  "plan": "pro",
  "plan_limit_cents": 5000
}

Usage history

GET /usage/history?period=daily&days=30
Returns daily usage for the specified period:
{
  "data": [
    {
      "date": "2024-01-15",
      "tokens_input": 5200,
      "tokens_output": 1800,
      "cost_cents": 14
    }
  ]
}

Plan limits

PlanMonthly token limitDaily cost cap
Free100K tokens$1/day
Pro2M tokens$50/day
UltraUnlimited$200/day
When you hit your plan limit, your AI assistant will stop generating responses until the next billing period or until you upgrade.