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

# List Replayable Router Requests API

> List captured router requests available for replay in the Aria Compute ROUTER. Filters by entrypoint, model, status, and time.

The List Replay endpoint returns a log of requests captured by the Aria Compute ROUTER that can be re-executed. Each entry includes a unique replay ID, the entrypoint, resolved model, timestamp, and response status. Use this to audit traffic or select a request to reroute.

Any authenticated caller may access this endpoint.

## Endpoint

```http theme={null}
GET /v1/router/replay
```

## Authentication

Authenticate with a session cookie or pass `Authorization: Bearer <api-key>`.

## Response

<ResponseField name="items" type="array">
  List of replayable requests.

  <Expandable title="items">
    <ResponseField name="id" type="string">
      Unique replay identifier.
    </ResponseField>

    <ResponseField name="entrypoint" type="string">
      Entrypoint that received the request.
    </ResponseField>

    <ResponseField name="model" type="string">
      Model resolved during routing.
    </ResponseField>

    <ResponseField name="timestamp" type="string">
      ISO 8601 timestamp of the original request.
    </ResponseField>

    <ResponseField name="status" type="integer">
      HTTP status code of the original response.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://router.example.com/v1/router/replay" \
    -H "Authorization: Bearer <api-key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "req_9f3a2b",
        "entrypoint": "default-chat",
        "model": "gpt-4o",
        "timestamp": "2024-06-15T14:23:10Z",
        "status": 200
      },
      {
        "id": "req_8e1c4d",
        "entrypoint": "agent-chat",
        "model": "claude-3-5-sonnet-20241022",
        "timestamp": "2024-06-15T14:25:44Z",
        "status": 200
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [Reroute Captured Router Request API](/api-reference/router/replay/reroute.md)
- [List ROUTER API Keys API](/api-reference/router/keys/list.md)
- [Router Providers List and Upsert API](/api-reference/router/management/providers.md)
- [Router Management Plane Models List API](/api-reference/router/management/models.md)
- [Aria Compute ROUTER: OpenAI-compatible inference gateway](/api-reference/router/introduction.md)
