curl --request GET \
--url https://api.ara.so/billing/status \
--header 'Authorization: Bearer <token>'{
"plan": "<string>",
"is_paid": true,
"credits": {},
"stripe_customer_id": "<string>",
"stripe_subscription_id": "<string>",
"stripe_status": "<string>",
"byok_enabled": false,
"idle_timeout_minutes": 123,
"skills_enabled": false
}Get user’s billing status with credits derived from the usage ledger (paid).
curl --request GET \
--url https://api.ara.so/billing/status \
--header 'Authorization: Bearer <token>'{
"plan": "<string>",
"is_paid": true,
"credits": {},
"stripe_customer_id": "<string>",
"stripe_subscription_id": "<string>",
"stripe_status": "<string>",
"byok_enabled": false,
"idle_timeout_minutes": 123,
"skills_enabled": false
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Was this page helpful?