List Pipelines
const url = 'https://example.com/api/v1/pipelines/?offset=0&limit=100&status=all&sort_by=updated_at&sort_order=desc&nexa_managed=true&enrich_with_live_state=false';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/v1/pipelines/?offset=0&limit=100&status=all&sort_by=updated_at&sort_order=desc&nexa_managed=true&enrich_with_live_state=false'List pipelines with proper offset/limit pagination and optional live state enrichment.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Number of records to skip for pagination
Number of records to skip for pagination
Maximum records to return
Maximum records to return
Filter by normalized status: all|failed|running|succeeded|canceled
Filter by normalized status: all|failed|running|succeeded|canceled
Sort by: name, updated_at, created_at, last_update_time
Sort by: name, updated_at, created_at, last_update_time
Sort order: asc, desc
Sort order: asc, desc
Fetch live state from Databricks (default uses cached DB state)
Fetch live state from Databricks (default uses cached DB state)
Header Parameters
Section titled “Header Parameters”Responses
Section titled “Responses”Successful Response
List response aligned with jobs listing style.
object
Lightweight pipeline info for list view (flattened).
object
object
Example
{ "pipelines": [ { "nexa_managed": false } ]}Validation Error
object
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}