Plans
Retrieve available subscription plans and their features.
GET
/api/v1/billing/plansReturns all available subscription plans with their pricing and feature limits.
Response
200 OKGET/api/v1/billing/plans
curl -X GET "https://api.gilito.ai/api/v1/billing/plans" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": [
{
"id": "plan1-...",
"name": "Free",
"slug": "free",
"price": 0,
"currency": "USD",
"interval": "month",
"features": {
"apiRequestsPerDay": 1000,
"apiRequestsPerMinute": 30,
"watchlists": 1,
"portfolios": 1,
"alerts": 5
}
},
{
"id": "plan2-...",
"name": "Pro",
"slug": "pro",
"price": 29,
"currency": "USD",
"interval": "month",
"features": {
"apiRequestsPerDay": 10000,
"apiRequestsPerMinute": 120,
"watchlists": 10,
"portfolios": 5,
"alerts": 50
}
},
...
]
}