Endpoints
| Method | Path | Description |
|---|
GET | /api/v2/templates | List templates |
List templates
GET /api/v2/templates
Query parameters
org (default) returns your organization’s templates. public returns marketplace templates.
Page number (default: 1).
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
Array of template objects.Show Template object fields
Template identifier. Pass this as templateId when creating a room.
ISO 8601 creation timestamp.
Total number of matching templates.
Total number of pages at the current limit.
{
"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
}