Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.app.shinzo.ai/auth/fetch_user_quota \ --header 'Authorization: Bearer <token>'
Retrieve the authenticated user’s usage quota and limits.
Authorization: Bearer <jwt_token>
curl -X GET https://api.app.shinzo.ai/auth/fetch_user_quota \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."
{ "plan": "free", "quotas": { "agents": { "limit": 3, "used": 1 }, "telemetry_events_per_month": { "limit": 100000, "used": 45230 }, "api_requests_per_minute": { "limit": 1000, "used": 0 } }, "features": { "ai_agents": true, "spotlight": true, "advanced_analytics": false } }
plan
quotas
features
200
401