Skip to main content
GET
/
api
/
timbre
/
credits
curl -X GET "https://api.usatimbre.com/api/timbre/credits" \
  -H "Authorization: Bearer tmb_YOUR_API_KEY"
{
  "organization_id": "875f127e-b3d0-4fdc-82bf-45c3baf4e30b",
  "credits_available": "923",
  "low_credits_alert": "false"
}

Overview

Retrieve current credit information for the organization associated with the API key.

Authentication

Requires a valid API key in the Authorization header.

Response

organization_id
string
Unique organization identifier (UUID)
credits_available
string
Current number of credits available
low_credits_alert
string
Whether low-credit alerting is enabled ("true" or "false")
curl -X GET "https://api.usatimbre.com/api/timbre/credits" \
  -H "Authorization: Bearer tmb_YOUR_API_KEY"
{
  "organization_id": "875f127e-b3d0-4fdc-82bf-45c3baf4e30b",
  "credits_available": "923",
  "low_credits_alert": "false"
}