Skip to main content
GET
/
api
/
v1
/
user
/
{user_id}
/
requests
/
recent
Get User Recent Requests
curl --request GET \
  --url https://api.entityml.com/api/v1/user/{user_id}/requests/recent
{
  "recent_requests": [
    {}
  ]
}

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.
limit
integer
Number of recent requests to return. Default: 10.

Response

recent_requests
array
Request rows with endpoint, timestamp, status, api_key_id, and timestamp_human.

Example

from entityml import EntityMLClient

client = EntityMLClient()
recent = client.analytics.get_user_recent_requests(user_id="YOUR_USER_ID", limit=5)
print(recent["recent_requests"])

Example response

{
  "user_id": "YOUR_USER_ID",
  "recent_requests": [
    {
      "endpoint": "/api/v1/polymarket/market/data",
      "timestamp": "2026-05-01T15:30:00+00:00",
      "status": "success",
      "api_key_id": "key-uuid",
      "timestamp_human": "2026-05-01 15:30:00 UTC"
    }
  ],
  "total": 1
}