Skip to main content

Endpoints

MethodPathDescription
GET/api/v2/templatesList templates

List templates

GET /api/v2/templates

Query parameters

source
"org" | "public"
org (default) returns your organization’s templates. public returns marketplace templates.
page
number
Page number (default: 1).
limit
number
Results per page (default: 10).
curl "https://api.flowla.com/api/v2/templates?source=org&page=1&limit=20" \
  -H "x-flowla-api-key: YOUR_API_KEY"

Response

results
array
Array of template objects.
totalRecords
number
Total number of matching templates.
totalPages
number
Total number of pages at the current limit.
Response 200
{
  "results": [
    { "id": "tpl_01ab2", "title": "Enterprise onboarding", "description": null, "createdAt": "2026-01-15T10:00:00.000Z" },
    { "id": "tpl_01xy9", "title": "POC kickoff", "description": null, "createdAt": "2026-02-01T09:00:00.000Z" }
  ],
  "totalRecords": 2,
  "totalPages": 1
}