Skip to main content

FlowMaestro API

Programmatically manage workflows, agents, and execute automations.

Base URL

https://api.flowmaestro.ai

Request Format

  • All requests should use JSON for request bodies
  • Set Content-Type: application/json header
  • Responses are always JSON

Response Format

{
"success": true,
"data": { }
}

Error responses:

{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Workflow not found"
}
}

Rate Limits

PlanRequests/minute
Free60
Pro300
EnterpriseCustom

Pagination

GET /v1/workflows?page=1&limit=20

Response includes:

{
"data": [...],
"pagination": {
"page": 1,
"limit": 20,
"total": 150,
"totalPages": 8
}
}