Retrieve details of pipelines
GET https://{controlplane_path}api/1/rest/public/catalog/{env_org}/pipelines
Retrieve list of pipelines in the environment.
Prerequisites
- Environment (Org) admin permissions
Path parameters
| Parameter | Description | Required |
|---|---|---|
controlplane_path |
The path to the SnapLogic control plane:
elastic.snaplogic.com
For the UAT or EMEA control plane, substitute the name for
elastic. For example:
|
Yes |
org_name |
The name of the SnapLogic Environment/Org. | Yes |
Query parameters
| Key | Value | Description | Required/Optional |
|---|---|---|---|
children_of |
String (pipeline_snode_id) | Returns only the pipelines that are executed by the <pipeline_snode_id> via a Pipeline Execute Snap. | Optional |
parents_for |
String (pipeline_snode_id) | Returns only the pipelines that execute the <pipeline_snode_id> via a Pipeline Execute Snap. | Optional |
Request header
In the request header, specify Basic for authorization, add your credentials (Login and password of your SnapLogic user or service account), and specify application/json for content type.
For more details on accounts refer to Manage accounts.
Authorization: Basic {base64_encoded <email>:<password>}
Content-Type: application/json
Example of Basic authentication using Postman
When using JWT authentication, the API requests includes specific headers. In the
request header, specify Bearer Token for authorization, add the token,
and specify application/json for content type. These headers are
automatically added when you configure bearer token authentication in your API client.
The authorization header contains the word Bearer followed by a
space and your JWT token.
Authorization: Bearer Token {token}
Content-Type: application/json
Example of JWT authenthication using Postman
Response
Code 200 OK where: list: The list of pipelines.page: The current page of results.content: Each JSON object contains the data lineage for a pipeline in the OpenLineage Object Model.
{
"size": 0,
"page": 0,
"content": [
json1, json2, json3
]
}
Example 1
Assuming a pipeline request in a development environment:
https://elastic.snaplogicdev.com/api/1/rest/public/catalog/DEV/pipelines
{
"size": 2,
"page": 0,
"total_pages": 1,
"total_elements": 2,
"sync_status": "finished",
"content": [
{
"name": "01.JDBC.slp_20240618142302457765",
"path": "DEV/project1",
"pipeline_id": "c2d27ca6-1951-4e77-926d-999056f8911b",
"snode_id": "66717c287582f450c5689dac",
"created_by": "[email protected]",
"updated_by": "[email protected]",
"last_run_status": null,
"created_at": "2024-06-18T12:23:04.535Z",
"updated_at": "2024-06-18T12:23:04.535Z",
"last_run_date": null,
"sources": [
{
"name": "JDBC"
}
],
"targets": [
{
"name": "JDBC"
}
],
"accounts": [],
"operational_data": {
"total_executions": 0,
"stopped_executions": 0,
"successful_executions": 0,
"failed_executions": 0,
"execution_failure_rate": 0.0,
"average_duration_ms": 0,
"average_docs_processed": 0
},
"custom_metadata": {
"LOB": "Utility"
}
},
{
"name": "01.JDBC.slp_20240625173717460551",
"path": "DEV/project1",
"pipeline_id": "6e18482a-3016-430e-b041-ae125b101eaa",
"snode_id": "667ae42f3ace493bf6dce1e7",
"created_by": "[email protected]",
"updated_by": "[email protected]",
"last_run_status": null,
"created_at": "2024-06-25T15:37:19.016Z",
"updated_at": "2024-06-25T15:37:19.017Z",
"last_run_date": null,
"sources": [
{
"name": "JDBC"
}
],
"targets": [
{
"name": "JDBC"
}
],
"accounts": [],
"operational_data": {
"total_executions": 0,
"stopped_executions": 0,
"successful_executions": 0,
"failed_executions": 0,
"execution_failure_rate": 0.0,
"average_duration_ms": 0,
"average_docs_processed": 0
},
"custom_metadata": {
"LOB": "Utility"
}
},
},
Example 2
Assuming a pipeline request in a development environment with
children_of as query parameter:
https://elastic.snaplogic.com/api/1/rest/public/catalog/DBT-Analytics/pipelines?children_of=682a6fe6e1db4e0f388dde25
{
"size": 1,
"page": 0,
"total_pages": 1,
"total_elements": 1,
"sync_status": "finished",
"table_last_upd_time": "2025-09-25T23:23:58.161Z",
"content": [
{
"name": "Children",
"path": "DEV/project2",
"pipeline_id": "e92c96ae-9827-4976-adc9-d73f67239bf3",
"snode_id": "682a6fe6e1db4e0f388dde25",
"created_by": "[email protected]",
"updated_by": "[email protected]",
"last_run_status": null,
"created_at": "2025-05-14T10:49:16.972Z",
"updated_at": "2025-05-14T10:50:35.118Z",
"pipeline_type": null,
"last_run_date": null,
"sources": [],
"targets": [],
"accounts": [],
"operational_data": {
"total_executions": 0,
"stopped_executions": 0,
"successful_executions": 0,
"failed_executions": 0,
"execution_failure_rate": 0.0,
"average_duration_ms": 0,
"average_docs_processed": 0
},
"custom_metadata": {
"LOB": "Utility"
}
}
]
}Example 3
Assuming a pipeline request in a development environment with
parents_for as query parameter:
https://elastic.snaplogic.com/api/1/rest/public/catalog/DBT-Analytics/pipelines?parents_for=682a6fe6e1db4e0f388dde25
{
"size": 1,
"page": 0,
"total_pages": 1,
"total_elements": 1,
"sync_status": "finished",
"table_last_upd_time": "2025-09-25T23:23:58.161Z",
"content": [
{
"name": "Parent",
"path": "DEV/project3",
"pipeline_id": "f18d560c-14e6-4c48-bf85-108390f7ad2d",
"snode_id": "682a6fe6e1db4e0f388dde25",
"created_by": "[email protected]",
"updated_by": "[email protected]",
"last_run_status": null,
"created_at": "2025-05-14T10:48:55.812Z",
"updated_at": "2025-05-14T10:51:03.523Z",
"pipeline_type": null,
"last_run_date": null,
"sources": [
{
"name": "test"
}
],
"targets": [],
"accounts": [],
"operational_data": {
"total_executions": 0,
"stopped_executions": 0,
"successful_executions": 0,
"failed_executions": 0,
"execution_failure_rate": 0.0,
"average_duration_ms": 0,
"average_docs_processed": 0
},
"custom_metadata": {
"LOB": "Information Technology"
}
}
]
}