curl --request GET \
--url https://api.capout.ai/credits \
--header 'capout-api-key: <api-key>'{
"organization_id": "org_123",
"total_available_credits": 1800,
"total_expiring_in_30_days": 250,
"buckets": [
{
"id": "bucket_01",
"tokens_remaining": 1200,
"expires_at": "2026-05-10T00:00:00Z",
"created_at": "2026-03-10T00:00:00Z"
},
{
"id": "bucket_02",
"tokens_remaining": 600,
"expires_at": null,
"created_at": "2026-04-01T00:00:00Z"
}
]
}Check the credit balance for the authenticated organization.
curl --request GET \
--url https://api.capout.ai/credits \
--header 'capout-api-key: <api-key>'{
"organization_id": "org_123",
"total_available_credits": 1800,
"total_expiring_in_30_days": 250,
"buckets": [
{
"id": "bucket_01",
"tokens_remaining": 1200,
"expires_at": "2026-05-10T00:00:00Z",
"created_at": "2026-03-10T00:00:00Z"
},
{
"id": "bucket_02",
"tokens_remaining": 600,
"expires_at": null,
"created_at": "2026-04-01T00:00:00Z"
}
]
}Organization-scoped API key used for REST endpoints and for minting realtime tokens.