Get Log
Path Parameters
log_idstringRequired
Unique log identifier
- Minimum length:
1
const response = await fetch("https://api.reloop.sh/api/logs/v1/log_123456789", {
method: "GET",
headers: {
"x-api-key": "rl_123456789"
}
});
const log = await response.json();{
"uuid": "example_uuid",
"event": "evt_123456789",
"level": "example_level",
"trace_id": "example_trace_id",
"metadata": null,
"status_code": 0,
"created_at": "2026-03-23T10:00:00.000Z",
"requestDetails": null,
"request_body": null,
"email": null,
"actor_type": "example_actor_type",
"actor_id": "example_actor_id",
"resource_type": "example_resource_type",
"resource_id": "example_resource_id",
"service": "example_service",
"action": "example_action",
"ip_address": "example_ip_address",
"user_agent": "example_user_agent",
"environment": "example_environment"
}Was this page helpful?