๐Ÿ”ฅGodFocus Platformยท Docs
โ† HomeDashboard โ†’

Billing Packs

GET/v1/billing/packsFree

Returns 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"
    }
  ]
}
FieldTypeDescription
idstringPack identifier โ€” use this in /v1/billing/checkout
namestringHuman-readable pack name
creditsnumberCredits added to your balance
amountCentsnumberPrice in cents (USD)
currencystringAlways "usd"

Example

curl https://platform.godfocus.io/v1/billing/packs \
  -H "Authorization: Bearer $GODFOCUS_API_KEY"