> ## Documentation Index
> Fetch the complete documentation index at: https://docs.platendoc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List templates

> Returns a paginated list of published templates in your workspace.

Use this endpoint to discover available template IDs and their variable names before triggering generations.

<ParamField query="cursor" type="string">
  Pagination cursor from the previous response's `nextCursor` field.
</ParamField>

<ParamField query="limit" type="integer" default="20">
  Number of results to return (1–100).
</ParamField>

<ResponseField name="data" type="Template[]">
  Array of template objects.
</ResponseField>

<ResponseField name="nextCursor" type="string | null">
  Cursor to pass in the next request. `null` when there are no more results.
</ResponseField>

<ResponseField name="hasMore" type="boolean">
  Whether more results exist beyond this page.
</ResponseField>
