Request Logs
Every request made to your mock endpoints is automatically logged. Open the request log from your project dashboard to inspect exactly what your frontend sent and what Rest Faker returned — without adding any instrumentation to your app.
Request details
Method, path, query string, request headers, and request body are all captured and displayed.
Response details
HTTP status code and the full response body returned by the mock endpoint.
Timestamp
Exact UTC time of each request, so you can correlate logs with actions in your frontend.
Log entry structure
Each entry in the request log contains the following fields:
{
"timestamp": "2026-06-19T14:32:07.412Z",
"method": "POST",
"path": "/api/schema/posts",
"status": 201,
"requestHeaders": {
"apitoken": "your_api_token_here",
"content-type": "application/json"
},
"requestBody": {
"data": {
"title": "My new post",
"slug": "my-new-post"
}
},
"responseBody": {
"id": "a1b2c3d4-...",
"title": "My new post",
"slug": "my-new-post",
"createdAt": "2026-06-19T14:32:07.410Z",
"updatedAt": "2026-06-19T14:32:07.410Z"
}
}Accessing the log
Open your project
Go to the project dashboard for the mock API you want to inspect.
Click Request Log
The Request Log tab shows all recent traffic to your endpoints, newest first.
Expand any entry
Click a log row to expand the full request and response bodies for that call.
Retention limits
Logs are stored per project up to the limit for your plan. Once the limit is reached, the oldest entries are dropped as new ones arrive.