External DocumentationTo learn more, visit the Beeceptor documentation.
Actions
List Requests
Retrieve HTTP request history for a specified endpoint with optional filtering.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Date Range | The relative timeframe for request retrieval. For example: - ‘10m’ - last 10 minutes - ‘24h’ - last 24 hours. |
| Endpoint Name | The name of the endpoint to list requests of. |
| Method | Filter requests by HTTP method. |
| Path | Filter requests by their URL path. |
| Response Detail Level | Select basic for essential data or full for complete request/response details. |
| Status | Filter requests by HTTP response status code (200-599). |
| Parameter | Description |
|---|---|
| Count | The number of results to retrieve (up to 500 per request). |
| From Date | Retrieve requests that occurred after this timeframe. |
| Response Body | Filter requests where the response payload contains this value (supports text search or regex). |
| To Date | Retrieve requests that occurred before this timeframe. |
{
"data": [
{
"id": "tabejjdc5wg",
"date": "2023-11-02T12:07:17.350Z",
"method": "GET",
"path": "/random-responses",
"rule": true,
"status": 505,
"timeTaken": 37
},
{
"id": "1kjuikmdna3",
"date": "2023-11-02T12:07:12.263Z",
"method": "POST",
"path": "/post-for-templated-response?address=Hyderabad",
"rule": true,
"status": 202,
"timeTaken": 5028
}
]
}
Was this page helpful?