Generate Workflow
curl --request POST \
--url https://api.example.com/v1/workflows/generate \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"workflow_type": "<string>",
"indicator_types": []
}
'{
"data": {
"generated_code": "<string>",
"suggested_name": "<string>",
"suggested_documentation": "<string>",
"warnings": []
},
"meta": {}
}Workflows
Generate Workflow
Generate workflow Python code from a natural language description.
Uses the configured LLM (Anthropic Claude) to produce a runnable workflow. Returns the generated code for review; does not save automatically. Requires ANTHROPIC_API_KEY to be configured.
POST
/
v1
/
workflows
/
generate
Generate Workflow
curl --request POST \
--url https://api.example.com/v1/workflows/generate \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"workflow_type": "<string>",
"indicator_types": []
}
'{
"data": {
"generated_code": "<string>",
"suggested_name": "<string>",
"suggested_documentation": "<string>",
"warnings": []
},
"meta": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.calseta.com/llms.txt
Use this file to discover all available pages before exploring further.
⌘I

