API Reference
List Step Types
List all available step types that can be used in workflows. These are the building blocks users can compose into workflows.
Authorizations
X-API-KeystringheaderrequiredYour API key for authentication
Cookies
wos-sessionstringcookieSession cookie
access_tokenstringcookieAccess token cookie
datalab_active_teamstringcookieActive team cookie
Response
Successful Response
List Step Types
import requests
url = "https://www.datalab.to/api/v1/workflows/step-types"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)422Error
{
"detail": [
{
"loc": ["<string>"],
"msg": "<string>",
"type": "<string>"
}
]
}