Logs

Get Step Logs

get

Get log entries for a step.

Args: step_id: ID of the step for which to get the logs.

Returns: List of log entries.

Raises: KeyError: If no logs are available for this step.

Authorizations
OAuth2passwordRequired
Token URL:
Path parameters
step_idstring · uuidRequired
Responses
200

Successful Response

application/json
get
/api/v1/steps/{step_id}/logs
GET /api/v1/steps/{step_id}/logs HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "message": "text",
    "name": "text",
    "level": 0,
    "timestamp": "2025-11-12T20:41:20.891Z",
    "module": "text",
    "filename": "text",
    "lineno": 1,
    "chunk_index": 0,
    "total_chunks": 1,
    "id": "123e4567-e89b-12d3-a456-426614174000"
  }
]

Last updated

Was this helpful?