Skip to main content
Retrieve HTTP request history for a specified endpoint with optional filtering.
External DocumentationTo learn more, visit the Beeceptor documentation.

Basic Parameters

ParameterDescription
Date RangeThe relative timeframe for request retrieval.

For example:
- ‘10m’ - last 10 minutes
- ‘24h’ - last 24 hours.
Endpoint NameThe name of the endpoint to list requests of.
MethodFilter requests by HTTP method.
PathFilter requests by their URL path.
Response Detail LevelSelect basic for essential data or full for complete request/response details.
StatusFilter requests by HTTP response status code (200-599).

Advanced Parameters

ParameterDescription
CountThe number of results to retrieve (up to 500 per request).
From DateRetrieve requests that occurred after this timeframe.
Response BodyFilter requests where the response payload contains this value (supports text search or regex).
To DateRetrieve requests that occurred before this timeframe.

Example Output

{
	"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
		}
	]
}

Workflow Library Example

List Requests with Beeceptor and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop
I