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