Skip to main content
GET
/
credits
/
balance
Get credit balance
curl --request GET \
  --url https://api.veryfront.com/credits/balance \
  --header 'Authorization: Bearer <token>'
{
  "tier": 50,
  "purchased": 100,
  "total": 150,
  "tier_limit": 50
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Response

Credit balance by pool

tier
number
required

Credits remaining in the monthly tier pool

Example:

50

purchased
number
required

Credits remaining in the purchased pool

Example:

100

total
number
required

Total credits remaining across all pools

Example:

150

tier_limit
number
required

Monthly credit allocation for the user tier

Example:

50