Skip to main content
GET
/
workflows
Workflow discovery
curl --request GET \
  --url https://api.compose.market/workflows
{
  "workflows": [
    {
      "walletAddress": "0xba04fa4baacbac0d93bb73a7fd473a41aa7f2815",
      "name": "Research flow"
    }
  ],
  "total": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.compose.market/llms.txt

Use this file to discover all available pages before exploring further.

Workflow discovery routes are public. Runtime execution routes are documented separately.

Routes

MethodPathDescription
GET/workflowsLists public workflow metadata.
GET/workflow/{walletAddress}Returns one workflow by wallet address.
GET/frameworksLists runtime framework IDs exposed by the gateway.

Path parameters

walletAddress
string
required
Workflow wallet address. Must be an EVM address.

Response

workflows
array
Workflow list.
total
number
Number of workflows returned.
{
  "workflows": [
    {
      "walletAddress": "0xba04fa4baacbac0d93bb73a7fd473a41aa7f2815",
      "name": "Research flow"
    }
  ],
  "total": 1
}