Browsable Browsable Docs

Get Run Logs API

Retrieve execution logs for a specific run.

GET /v1/runs/{run_id}/logs

Parameters

Add ?include=all to include all logs (including debug).

Example

curl -X GET "https://api.browsable.app/v1/runs/run_abc123/logs?include=all" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "logs": [
    {
      "id": "log_1",
      "level": "info",
      "message": "Searching Reddit",
      "source": "builtin",
      "created_at": "2024-01-20T10:30:05Z"
    }
  ]
}