> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rushed.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Reading History

> Get the user's article reading history

## Headers

<ParamField header="X-API-Key" type="string" required>Your Rushed API key: `rsh_live_xxxxxxxxxxxx`</ParamField>

## Query Parameters

<ParamField query="limit" type="integer" default="20">Results per page</ParamField>
<ParamField query="offset" type="integer" default="0">Skip results</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://worker.rushed.com.br/api/users/history?limit=10" \
    -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — Success theme={null}
  {
    "success": true,
    "data": [
      { "article": { "id": "550e8400-...", "title": "Petrobras dividend payout" }, "readAt": "2026-03-28T15:00:00Z" }
    ]
  }
  ```
</ResponseExample>
