Skip to main content
GET
/
v1
/
logs
/
{id}
Get a request log
curl --request GET \
  --url https://api.scrip.dev/v1/logs/{id} \
  --header 'X-API-Key: <api-key>'
{
  "auth_type": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "duration_ms": 123,
  "error_code": "<string>",
  "id": "<string>",
  "ip_address": "<string>",
  "method": "<string>",
  "path": "<string>",
  "request_body": {},
  "request_id": "<string>",
  "response_body": {},
  "route_pattern": "<string>",
  "status_code": 123,
  "user_agent": "<string>"
}
Returns a single request log by ID, including the full request and response bodies. This gives you the exact payload that was sent and the complete response that was returned. Use this for debugging specific API calls. If you have a request_id from an error response or webhook delivery, you can look up the corresponding log entry to see the full context of what happened.
For usage patterns and examples, see the Reporting guide.

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header.

Path Parameters

id
string<uuid>
required

Request log ID

Response

Full request log detail

auth_type
string | null
created_at
string<date-time>
duration_ms
integer
error_code
string | null
id
string
ip_address
string | null
method
string
path
string
request_body
object
request_id
string
response_body
object
route_pattern
string | null
status_code
integer
user_agent
string | null