GET /v1/pipelines/{id}
Retrieve a Pipeline
Get a pipeline by ID or fully qualified name
GET
GET /v1/pipelines/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Pipeline
Get a single pipeline by its unique ID or fully qualified name.Get by ID
UUID of the pipeline to retrieve.
Comma-separated list of fields to include (e.g.,
owners,tags,followers,votes,extension,domains,tasks,sourceHash).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/pipelines/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the pipeline (e.g.,
sample_airflow.dbt_analytics_customers).Comma-separated list of fields to include:
owners, tags, followers, votes, extension, domains, tasks, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/pipelines/{id}
Returns
Returns a pipeline object with all requested fields populated.Response
Unique identifier for the pipeline (UUID format).
Pipeline name.
Fully qualified name in format
service.pipelineName.Human-readable display name.
Description of the pipeline in Markdown format.
URL to the pipeline in the source system.
Reference to the parent pipeline service.
Type of pipeline service (e.g., Airflow, Dagster, DBTCloud).
Pipeline tasks. Only included when
fields contains tasks.Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Domain assignments. Only included when
fields contains domains.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this pipeline |
404 | NOT_FOUND | Pipeline with given ID or FQN does not exist |