cURL
curl --request GET \ --url https://api.entityml.com/api/v1/user/{user_id}/requests/count
{ "user_id": "<string>", "total_requests": 123 }
Return the total logged API request count 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() count = client.analytics.get_user_request_count(user_id="YOUR_USER_ID") print(count["total_requests"])
{ "user_id": "YOUR_USER_ID", "total_requests": 1420 }