Skip to main content
GET
/
api
/
v1
/
user
/
{user_id}
/
requests
/
count
Get User Request Count
curl --request GET \
  --url https://api.entityml.com/api/v1/user/{user_id}/requests/count
{
  "user_id": "<string>",
  "total_requests": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.entityml.com/llms.txt

Use this file to discover all available pages before exploring further.

Request

user_id
string
required
User ID to inspect.

Response

user_id
string
total_requests
integer

Example

from entityml import EntityMLClient

client = EntityMLClient()
count = client.analytics.get_user_request_count(user_id="YOUR_USER_ID")
print(count["total_requests"])

Example response

{
  "user_id": "YOUR_USER_ID",
  "total_requests": 1420
}