Skip to main content
GET
/
logs
Usage Logs
curl --request GET \
  --url https://api.euron.one/api/v1/euri/logs \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.euri.ai/llms.txt

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

Request

GET https://api.euron.one/api/v1/euri/logs
This endpoint uses session authentication (logged-in user), not API key auth.

Query parameters

model
string
Filter by model ID.
status
string
Filter by status (e.g. success, error).
startDate
string
Start date in ISO format.
endDate
string
End date in ISO format.
limit
integer
Number of logs to return. Default: 20.
offset
integer
Pagination offset. Default: 0.

Example

curl "https://api.euron.one/api/v1/euri/logs?model=gpt-4o-mini&limit=10" \
  -H "Cookie: session=YOUR_SESSION_COOKIE"

Response

Returns an array of log entries with model, tokens, cost, status, and timestamp for each request.