> ## 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.

# Usage Logs

> Get detailed per-request usage logs for your account.

## Request

```bash theme={null}
GET https://api.euron.one/api/v1/euri/logs
```

<Note>This endpoint uses **session authentication** (logged-in user), not API key auth.</Note>

### Query parameters

<ParamField query="model" type="string">
  Filter by model ID.
</ParamField>

<ParamField query="status" type="string">
  Filter by status (e.g. `success`, `error`).
</ParamField>

<ParamField query="startDate" type="string">
  Start date in ISO format.
</ParamField>

<ParamField query="endDate" type="string">
  End date in ISO format.
</ParamField>

<ParamField query="limit" type="integer">
  Number of logs to return. Default: `20`.
</ParamField>

<ParamField query="offset" type="integer">
  Pagination offset. Default: `0`.
</ParamField>

***

## Example

```bash theme={null}
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.
