cURL
curl --request GET \ --url https://api.entityml.com/api/v1/usage
{ "user_id": "<string>", "tier": "<string>", "tier_name": "<string>", "api_calls": 123, "limit": 123, "remaining": 123, "month": "<string>", "unlimited": true }
Return current monthly API usage and plan limit for a user.
Documentation IndexFetch the complete documentation index at: https://docs.entityml.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.entityml.com/llms.txt
Use this file to discover all available pages before exploring further.
from entityml import EntityMLClient client = EntityMLClient() usage = client.billing.get_usage(user_id="YOUR_USER_ID") print(usage["api_calls"])
{ "user_id": "YOUR_USER_ID", "tier": "pro", "tier_name": "Pro", "api_calls": 1284, "limit": null, "remaining": null, "month": "2026-05", "unlimited": true }