Get pipeline by pipeline_id.
Python
import requests url = "https://www.datalab.to/api/v1/pipelines/{pipeline_id}" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "id": 123, "pipeline_id": "<string>", "name": "<string>", "steps": [ "<unknown>" ], "is_saved": true, "archived": true, "active_version": 123, "created": "2023-11-07T05:31:56Z", "updated": "2023-11-07T05:31:56Z" }
Documentation IndexFetch the complete documentation index at: https://documentation.datalab.to/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://documentation.datalab.to/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Was this page helpful?