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

# Listar templates de WhatsApp

> Use `status=APPROVED` pra listar só os prontos pra enviar.



## OpenAPI

````yaml /api-reference/openapi.yaml get /wba/templates
openapi: 3.0.3
info:
  title: Nupapia API — Integração
  version: '1.0'
  description: >
    Referência da API pública da Nupapia para integração de sistemas terceiros:
    conversas de chat e CRM (clientes). Gere um token de integração em
    **Configurações → Integrações** dentro da Nupapia e use-o como Bearer token
    em todas as chamadas abaixo.
servers:
  - url: https://api.nupapia.com.br/api
    description: Produção
security:
  - integrationToken: []
paths:
  /wba/templates:
    get:
      tags:
        - Conversas
      summary: Listar templates de WhatsApp
      description: Use `status=APPROVED` pra listar só os prontos pra enviar.
      parameters:
        - name: status
          in: query
          schema:
            type: string
            example: APPROVED
      responses:
        '200':
          description: Templates
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        name:
                          type: string
                        language:
                          type: string
                        category:
                          type: string
                        status:
                          type: string
                        components:
                          type: array
                          items:
                            type: object
components:
  securitySchemes:
    integrationToken:
      type: http
      scheme: bearer
      bearerFormat: Token de integração (gerado em Configurações → Integrações)

````