Skip to main content
GET
/
billing
/
credits
Get Credits
curl --request GET \
  --url https://api.hedra.com/web-app/public/billing/credits \
  --header 'X-API-Key: <api-key>'
{
  "remaining": 123,
  "expiring": 123,
  "used": 123
}

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

Successful Response

Information about the current balance of Credits and usage.

remaining
integer
required

Remaining credits not yet used.

expiring
integer
required

Credits that will expire in the future.

used
integer
required

Credits used in the current billing period.

I