Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List all versions of a pipeline, newest first.
Python
import requests url = "https://www.datalab.to/api/v1/pipelines/{pipeline_id}/versions" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "versions": [ { "id": 123, "version": 123, "steps": [ "<unknown>" ], "description": "<string>", "created": "2023-11-07T05:31:56Z" } ], "total": 123 }
Successful Response
Show child attributes
Was this page helpful?