Get Pipeline
GET
/api/v1/pipelines/{pipeline_id}
const url = 'https://example.com/api/v1/pipelines/example?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/example?enrich_with_live_state=false'Get a single pipeline with Nexa validation and optional live state enrichment.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”pipeline_id
required
Pipeline Id
string
Query Parameters
Section titled “Query Parameters”enrich_with_live_state
Enrich With Live State
Merge with Databricks live state (default uses cached DB state)
boolean
Merge with Databricks live state (default uses cached DB state)
Header Parameters
Section titled “Header Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
PipelineResponse
Response model for a single pipeline - aligned with Databricks API.
object
pipeline_id
required
Pipeline Id
Unique identifier for the pipeline
string
name
required
Name
Name of the pipeline
string
nexa_managed
Nexa Managed
boolean
health
Any of:
PipelineHealthItem
Lightweight health info for list responses.
object
status
Status
string
last_update_time
Any of:
Last Update Time
null
last_success_time
Any of:
Last Success Time
null
last_failure_time
Any of:
Last Failure Time
null
consecutive_failures
Consecutive Failures
integer
is_stale
Is Stale
boolean
null
latest_updates
Any of:
Array<object>
object
key
additional properties
any
null
key
additional properties
any
Example
{ "nexa_managed": false, "health": { "status": "UNKNOWN", "consecutive_failures": 0, "is_stale": false }}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}