Get workflow definition with all steps.
import requests
url = "https://www.datalab.to/api/v1/workflows/workflows/{workflow_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": 123,
"name": "<string>",
"team_id": 123,
"steps": [
{}
]
}Documentation Index
Fetch the complete documentation index at: https://documentation.datalab.to/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?
import requests
url = "https://www.datalab.to/api/v1/workflows/workflows/{workflow_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": 123,
"name": "<string>",
"team_id": 123,
"steps": [
{}
]
}