> ## 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.

# List Plans

> List available subscription plans with pricing and trial eligibility

Returns all available plans, the company's current plan, credit balance, and trial eligibility.

### Response

```json theme={"theme":"css-variables"}
{
  "plans": [
    {
      "id": "starter",
      "name": "Starter",
      "credits_per_month": 500,
      "price": "$49/mo",
      "trial_days": 7,
      "features": ["500 credits/month", "All primitives", "System email domain"]
    },
    {
      "id": "pro",
      "name": "Pro",
      "credits_per_month": 2000,
      "price": "$149/mo",
      "trial_days": 7,
      "features": ["2000 credits/month", "All primitives", "Custom domains", "Priority support"]
    }
  ],
  "current_plan": "free",
  "credits_remaining": 12.5,
  "trial_eligible": true,
  "can_upgrade": true,
  "hint": "First-time subscribers get a 7-day free trial."
}
```
