list_requests
List inbound API requests the relay has processed for this project, newest first. Hot-tier window is the project's requestLogRetentionDays (see get_project). Optional filters narrow the result. Returns {total, limit, offset, rows[]} where each row has ts (unix ms), requestId, method, path, status, durationMs, targets, creditsDeducted, authType, errorMessage, bytesSent, configVersion (the published config that authorised the request; 0 means unstamped), and closeReason (for a streaming request: complete / abortedOrError / byteCap / noValue; empty for non-stream requests).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Substring of the request path (e.g. "/webhook"). LIKE-matched. | |
| limit | No | Page size. Default 50. | |
| since | No | Lower bound on ts (unix ms). Inclusive. | |
| until | No | Upper bound on ts (unix ms). Inclusive. | |
| method | No | HTTP method (POST, GET, …). Case-insensitive. | |
| offset | No | Page offset. Default 0. | |
| status | No | Exact HTTP status code (e.g. 404). | |
| targetOutcome | No | Narrow to requests that produced at least one per-target attempt with this outcome. Use "dlq" to find requests with at least one target that ended up dead-lettered. |