cURL
curl --request GET \ --url https://api.example.com/billing/subscription \ --header 'Authorization: Bearer <token>'
{ "plan": "<string>", "subscription_balance": 123, "purchased_balance": 123, "monthly_grant": 123, "stripe_customer_id": "<string>" }
Return the caller’s plan and current credit balances.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response