Skip to main content
GET
/
v1
/
billing
/
plans
List Plans
curl --request GET \
  --url https://api.example.com/v1/billing/plans

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.

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

Response

{
  "plans": [
    {
      "id": "starter",
      "name": "Starter",
      "credits_per_month": 50,
      "price": "$49/mo",
      "trial_days": 7,
      "features": ["50 credits/month", "All primitives", "System email domain"]
    },
    {
      "id": "pro",
      "name": "Pro",
      "credits_per_month": 200,
      "price": "$149/mo",
      "trial_days": 7,
      "features": ["200 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."
}