Covendocs

Read a rendered log view of one session

1 min read

GET
/sessions/{id}/log

Path Parameters

id*string

The session id (stable across daemon restarts).

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/sessions/session-1/log"
[
  {
    "ts": "2026-05-09T06:43:10.000Z",
    "level": "info",
    "message": "> continue with the next failing test"
  }
]
{
  "error": {
    "code": "session_not_found",
    "message": "Session was not found.",
    "details": {
      "sessionId": "session-1"
    }
  }
}
{
  "error": {
    "code": "internal_error",
    "message": "Unexpected internal daemon error.",
    "details": {}
  }
}
Was this page helpful?No