Skip to main content
GET
/
account
/
billing
Account Billing
curl --request GET \
  --url https://api.fal.ai/v1/account/billing \
  --header 'Authorization: <api-key>'
{
  "username": "my-team",
  "credits": {
    "current_balance": 24.5,
    "currency": "USD"
  }
}

Authorizations

Authorization
string
header
required

Admin API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_ADMIN_API_KEY

Query Parameters

expand

Data to include in the response. Use 'credits' to include current credit balance.

Example:

"credits"

Response

Account billing information retrieved successfully

Account billing information with optional expanded details

username
string
required

Account username

Example:

"my-team"

credits
object

Credit balance details. Only present when 'credits' is included in expand parameter.