curl --request GET \
--url https://api.ara.so/session/credits \
--header 'Authorization: Bearer <token>'{
"total": 123,
"used": 123,
"remaining": 123,
"remaining_minutes": 123,
"has_bypass": false
}Get user’s credit balance (same derivation as GET /usage/current).
curl --request GET \
--url https://api.ara.so/session/credits \
--header 'Authorization: Bearer <token>'{
"total": 123,
"used": 123,
"remaining": 123,
"remaining_minutes": 123,
"has_bypass": false
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?