Billing Packs
GET
/v1/billing/packsFreeReturns all available credit packs. Use this to display purchasing options in your application or to dynamically fetch current pricing.
Request
No request body required.
Response
{
"data": [
{
"id": "starter",
"name": "Starter",
"credits": 10000,
"amountCents": 1000,
"currency": "usd"
},
{
"id": "growth",
"name": "Growth",
"credits": 60000,
"amountCents": 5000,
"currency": "usd"
},
{
"id": "scale",
"name": "Scale",
"credits": 300000,
"amountCents": 20000,
"currency": "usd"
},
{
"id": "summit",
"name": "Summit",
"credits": 2000000,
"amountCents": 100000,
"currency": "usd"
}
]
}
| Field | Type | Description |
|---|---|---|
| id | string | Pack identifier โ use this in /v1/billing/checkout |
| name | string | Human-readable pack name |
| credits | number | Credits added to your balance |
| amountCents | number | Price in cents (USD) |
| currency | string | Always "usd" |