API Reference
List Workflows
List all workflow definitions with their steps.
Authorizations
X-API-KeystringheaderrequiredYour API key for authentication
Query Parameters
team_idintegerqueryFilter by team ID
Cookies
wos-sessionstringcookieSession cookie
access_tokenstringcookieAccess token cookie
datalab_active_teamstringcookieActive team cookie
Response
Successful Response
List Workflows
import requests
url = "https://www.datalab.to/api/v1/workflows/workflows"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)422Error
{
"detail": [
{
"loc": ["<string>"],
"msg": "<string>",
"type": "<string>"
}
]
}