get_log_detail
Get full details of a log: input/output content, credit and budget checks, evaluation scores, and metadata. Use after list_logs to analyze a specific log.
Instructions
Retrieve complete details of a single log via GET /api/request-logs/{id}/.
Returns full information including:
Full input/output content (input and output fields)
Type-specific fields based on log_type (chat, embedding, workflow, etc.)
Credit and budget check results (limit_info)
Evaluation scores
Complete request/response metadata
Tool calls and function calling details
The limit_info field shows:
is_allowed: Whether the request was allowed
limits: Array of limit checks (org_credits, customer_budget)
current_value: Balance before request
new_value: Balance after request
limit_value: Minimum required balance
is_within_limit: Whether check passed
Use list_logs first to find the unique_id, then use this endpoint for full details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| log_id | Yes | Unique identifier of the log (unique_id field from list_logs) |