cURL
curl --request GET \ --url https://api.modal.beeble.ai/v1/account/info \ --header 'x-api-key: <api-key>'
{ "email": "<string>", "billing_type": "prepaid", "monthly_hard_limit": 123, "rate_limits": { "rpm": { "usage": 0, "limit": 123 }, "rpd": { "usage": 0, "limit": 123 }, "concurrency": { "usage": 0, "limit": 123 } } }
Get account metadata and rate limits (fast, no Stripe calls).
Your Developer API key.
Successful Response
Account info from DynamoDB + Modal Dict (fast).
Account email address
'prepaid' or 'postpaid'
Monthly hard limit in dollars
Rate limits and current usage
Show child attributes