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

# List Templates

> Retrieve and manage your PDF templates with advanced filtering and pagination



## OpenAPI

````yaml get /api/templates
openapi: 3.1.0
info:
  title: Docurate PDF API
  description: Generate PDFs from JSON templates with data binding
  version: 1.0.0
servers:
  - url: https://api.curatepdf.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /api/templates:
    get:
      tags:
        - Templates
      summary: List Templates
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
            maximum: 100
      responses:
        '200':
          description: Templates list
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  templates:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: template_123
                        name:
                          type: string
                          example: My Template
                        created_at:
                          type: string
                          example: '2024-01-01T00:00:00.000Z'
                  pagination:
                    type: object
                    properties:
                      page:
                        type: integer
                        example: 1
                      limit:
                        type: integer
                        example: 10
                      total:
                        type: integer
                        example: 7
                      totalPages:
                        type: integer
                        example: 1
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for accessing the Docurate PDF API

````