> ## Documentation Index
> Fetch the complete documentation index at: https://developer.omni.z-api.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Template library

> Use Meta's ready-made templates without going through review

## Concepts

Meta keeps a **library of ready-made templates** for common use cases — order confirmation, delivery notice, verification code. Templates created from it **skip review**: they are approved from the start.

This endpoint lists what is available for your WABA.

<Note>
  The library is defined by Meta and varies by category and language. You cannot add templates to it.
</Note>

To create a regular template, which does go through review, use [Create template](/en/templates/create-template).


## OpenAPI

````yaml en/templates/openapi.json GET /whatsapp/businesses/{wabaId}/template-library
openapi: 3.1.0
info:
  title: Omni Z-API - Templates API
  description: API for managing WhatsApp Business message templates
  version: 1.0.0
servers:
  - url: https://api.omni.z-api.io
security:
  - bearerAuth: []
paths:
  /whatsapp/businesses/{wabaId}/template-library:
    get:
      tags:
        - Templates
      summary: List template library
      description: >-
        Returns the ready-made templates from Meta's library, which can be
        created without going through review.
      operationId: listTemplateLibrary
      parameters:
        - name: wabaId
          in: path
          required: true
          description: WABA ID (obtained via List WABAs)
          schema:
            type: string
            example: '428083093730937'
      responses:
        '200':
          description: Library templates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplateLibraryResponse'
              example:
                data:
                  - name: order_confirmation_1
                    category: UTILITY
                    languages:
                      - pt_BR
                      - en_US
                      - es_ES
                    body: Ola {{1}}, seu pedido {{2}} foi confirmado.
        '401':
          description: Invalid or missing token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    TemplateLibraryResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
                description: Template name in the library
              category:
                type: string
                enum:
                  - UTILITY
                  - MARKETING
                  - AUTHENTICATION
                description: Category
              languages:
                type: array
                items:
                  type: string
                description: Available languages
              body:
                type: string
                description: Template body preview
    Error:
      type: object
      properties:
        error:
          type: integer
          description: Error code
        message:
          type: string
          description: Error description
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Secret Key generated in the Omni Z-API Security panel

````