API referencePipeline
Get pipeline execution logs
Retrieve detailed execution logs for a pipeline
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
id*string
Pipeline UUID
Format
uuidQuery Parameters
level?string
Filter by log level
Value in
- "debug"
- "info"
- "warning"
- "error"
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/pipeline/497f6eca-6276-4993-bfeb-53cbbbba6f08/logs"{ "success": true, "data": [ { "timestamp": "2019-08-24T14:15:22Z", "level": "debug", "message": "string", "node_id": "string", "context": {} } ]}Get pipeline execution details GET
Retrieve detailed information about a pipeline execution including: - Overall pipeline status - Individual job statuses for each node - Node execution information (execution count, duration, errors) - Job status summary
Get pipeline status GET
Retrieve only the current status of a pipeline (lightweight endpoint). Use this for polling when you only need the status, not full details.