Skip to main content
GET
/
templates
curl -X GET "https://api.nedzo.ai/v1/templates?templateType=agent&limit=10" \
    -H "Authorization: Bearer YOUR_API_KEY"
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Customer Onboarding Agent",
    "description": "A voice agent template for onboarding new customers",
    "templateType": "agent",
    "visibility": "private",
    "schemaVersion": "1.0.0",
    "snapshotSizeBytes": 15240,

    "createdAt": "2026-01-15T10:30:00Z",
    "updatedAt": "2026-01-15T10:30:00Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.nedzo.ai/llms.txt

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

List templates owned by your account. Supports filtering by templateType and visibility, with pagination via limit/offset.

Query Parameters

templateType
string
Filter by template type. One of agent, workflow, or workspace.
visibility
string
Filter by visibility. One of public or private.
limit
integer
default:"50"
Maximum number of templates to return (1-100).
offset
integer
default:"0"
Number of templates to skip for pagination.
curl -X GET "https://api.nedzo.ai/v1/templates?templateType=agent&limit=10" \
    -H "Authorization: Bearer YOUR_API_KEY"
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Customer Onboarding Agent",
    "description": "A voice agent template for onboarding new customers",
    "templateType": "agent",
    "visibility": "private",
    "schemaVersion": "1.0.0",
    "snapshotSizeBytes": 15240,

    "createdAt": "2026-01-15T10:30:00Z",
    "updatedAt": "2026-01-15T10:30:00Z"
  }
]