---
title: "Eventos & Webhooks — WAME API Documentação"
description: "Documentação dos webhooks da WAME API: eventos de mensagens, status, conexão, QR Code, chamadas e grupos. Mesmo envelope (padrão WhatsApp Cloud API da Meta) para os três canais oficiais — WhatsApp, Instagram e Messenger — com o campo provider indicando o canal."
url: "https://api-wa.me/docs/webhooks"
language: "pt-BR"
og:type: "website"
og:site_name: "WAME API"
---

WEBHOOKS

# Eventos & Webhooks

A WAME API envia notificações em tempo real para a sua URL sempre que algo acontece na instância — mensagens recebidas, status de entrega, conexão, chamadas e mais. Os exemplos abaixo são carregados diretamente da API.

[REST API](https://api-wa.me/docs/api)[Índice de exemplos](https://us.api-wa.me/assets/examples/webhooks/meta/index.json)

## Introdução

Configure as URLs de webhook da instância pela REST API. Cada tipo de evento pode ter a sua própria URL — deixe em branco para usar a URL padrão (`webhookMessage`). A entrega é feita via `POST` com corpo JSON.

Formato `webhookFormat: "meta"`

O foco deste modelo é seguir o **mesmo padrão do webhook oficial** do WhatsApp — o WhatsApp Cloud API da Meta. Ao definir `"webhookFormat": "meta"` os payloads chegam no mesmo envelope da Cloud API, então você reaproveita o mesmo parser da integração oficial. [Ver referência da Meta](https://developers.facebook.com/documentation/business-messaging/whatsapp/webhooks/overview)

curl

copiar

```
curl -X PUT "https://us.api-wa.me/YOUR_KEY/instance" \
  -H "Content-Type: application/json" \
  -d '{
    "allowWebhook": true,
    "allowNumber": "all",
    "webhookFormat": "meta",
    "webhookMessage": "https://seu-servidor.com/webhook",
    "webhookGroup": "",
    "webhookConnection": "",
    "webhookQrCode": "",
    "webhookMessageFromMe": "",
    "webhookHistory": ""
  }'
```

Responda com `200 OK` o mais rápido possível. Falhas e reenvios podem ser acompanhados em `GET /{key}/instance/webhook/statistics`.

## Estrutura do payload

Com `webhookFormat: "meta"` os webhooks seguem o mesmo formato do [WhatsApp Cloud API da Meta](https://developers.facebook.com/documentation/business-messaging/whatsapp/webhooks/overview) . O envelope é sempre o mesmo — para os três canais oficiais (whatsapp, instagram, messenger); o que muda é o campo `provider` (o canal), o `changes[].field` e o conteúdo de `value`.

- `object` — sempre `"wame"`.
- `provider` — canal oficial que originou o evento: whatsapp, instagram, messenger. O envelope é idêntico nos três — use este campo para ramificar quando precisar.
- `instance` — id da instância que recebeu o evento (o mesmo valor de `phone_number_id`).
- `official` — `true` quando o evento vem da API oficial (Meta Cloud API); `false` na conexão não oficial do WhatsApp.
- `entry[].id` — identificador da instância.
- `entry[].changes[].field` — tipo do evento: messages, presence, connection, qrcode, call, groups, health.
- `entry[].changes[].value` — dados do evento.
- `…value.contacts[].user_id` — identificador do usuário na plataforma da Meta, ao lado do `wa_id` (quando disponível).
- `…value.messages[].from_user_id` — identificador do remetente na plataforma da Meta, ao lado do `from` (quando disponível).

## Mensagens

field: messages

Mensagens recebidas e status de entrega.

### Mensagem de texto

`message-text`

Texto simples enviado por um contato.

POSTwebhook payload · message-text.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_TEXT",
                "timestamp": "1700000000",
                "type": "text",
                "text": {
                  "body": "Olá!"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem de imagem

`message-image`

Imagem com legenda opcional.

POSTwebhook payload · message-image.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_IMG",
                "timestamp": "1700000000",
                "type": "image",
                "image": {
                  "id": "WAMID_IMG",
                  "url": "https://us.api-wa.me/your-instance-id/message/WAMID_IMG/media",
                  "mime_type": "image/jpeg",
                  "sha256": "YWJj",
                  "caption": "foto"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem de áudio

`message-audio`

Áudio ou mensagem de voz (PTT).

POSTwebhook payload · message-audio.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_AUD",
                "timestamp": "1700000000",
                "type": "audio",
                "audio": {
                  "id": "WAMID_AUD",
                  "url": "https://us.api-wa.me/your-instance-id/message/WAMID_AUD/media",
                  "mime_type": "audio/ogg",
                  "sha256": "YWJj",
                  "voice": true
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem de vídeo

`message-video`

Vídeo com legenda opcional.

POSTwebhook payload · message-video.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_VID",
                "timestamp": "1700000000",
                "type": "video",
                "video": {
                  "id": "WAMID_VID",
                  "url": "https://us.api-wa.me/your-instance-id/message/WAMID_VID/media",
                  "mime_type": "video/mp4",
                  "sha256": "YWJj",
                  "caption": "v"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem de documento

`message-document`

Arquivo/documento (PDF, planilha, etc.).

POSTwebhook payload · message-document.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_DOC",
                "timestamp": "1700000000",
                "type": "document",
                "document": {
                  "id": "WAMID_DOC",
                  "url": "https://us.api-wa.me/your-instance-id/message/WAMID_DOC/media",
                  "mime_type": "application/pdf",
                  "sha256": "YWJj",
                  "filename": "orcamento.pdf",
                  "caption": "PDF"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Figurinha (sticker)

`message-sticker`

Sticker estático ou animado.

POSTwebhook payload · message-sticker.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_STK",
                "timestamp": "1700000000",
                "type": "sticker",
                "sticker": {
                  "id": "WAMID_STK",
                  "url": "https://us.api-wa.me/your-instance-id/message/WAMID_STK/media",
                  "mime_type": "image/webp",
                  "sha256": "YWJj",
                  "animated": false
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Localização

`message-location`

Coordenadas de latitude e longitude.

POSTwebhook payload · message-location.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_LOC",
                "timestamp": "1700000000",
                "type": "location",
                "location": {
                  "latitude": -25.4,
                  "longitude": -49.2,
                  "name": "Curitiba",
                  "address": "PR"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Contatos

`message-contacts`

Um ou mais contatos compartilhados (vCard).

POSTwebhook payload · message-contacts.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_CON",
                "timestamp": "1700000000",
                "type": "contacts",
                "contacts": [
                  {
                    "name": {
                      "formatted_name": "Beltrano"
                    },
                    "vcard": "BEGIN:VCARD..."
                  }
                ]
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Reação

`message-reaction`

Emoji de reação a uma mensagem existente.

POSTwebhook payload · message-reaction.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_RCT",
                "timestamp": "1700000000",
                "type": "reaction",
                "reaction": {
                  "message_id": "ORIG1",
                  "emoji": "👍"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Reaction Removed

`message-reaction-removed`

POSTwebhook payload · message-reaction-removed.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_RCT2",
                "timestamp": "1700000000",
                "type": "reaction",
                "reaction": {
                  "message_id": "ORIG1"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Resposta de botão

`message-button`

Retorno da interação com um botão.

POSTwebhook payload · message-button.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_BTN",
                "timestamp": "1700000000",
                "type": "button",
                "button": {
                  "text": "Sim",
                  "payload": "btn_yes"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Resposta de lista

`message-interactive-list`

Item selecionado em uma lista interativa.

POSTwebhook payload · message-interactive-list.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_LST",
                "timestamp": "1700000000",
                "type": "interactive",
                "interactive": {
                  "type": "list_reply",
                  "list_reply": {
                    "id": "row_1",
                    "title": "Opção A",
                    "description": "desc"
                  }
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Interactive Button

`message-interactive-button`

POSTwebhook payload · message-interactive-button.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_TBTN",
                "timestamp": "1700000000",
                "type": "interactive",
                "interactive": {
                  "type": "button_reply",
                  "button_reply": {
                    "id": "btn_1",
                    "title": "Confirmar"
                  }
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem não suportada

`message-unsupported`

Tipo de mensagem ainda não tratado.

POSTwebhook payload · message-unsupported.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_UNS",
                "timestamp": "1700000000",
                "type": "unsupported",
                "errors": [
                  {
                    "code": 131051,
                    "title": "Unsupported message type",
                    "message": "Message type pollCreationMessageV3 is not supported",
                    "error_data": {
                      "details": "pollCreationMessageV3"
                    }
                  }
                ]
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Resposta (reply)

`message-reply-context`

Mensagem citando outra mensagem (contexto).

POSTwebhook payload · message-reply-context.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_RPL",
                "timestamp": "1700000000",
                "type": "text",
                "text": {
                  "body": "respondendo"
                },
                "context": {
                  "from": "5511777776666",
                  "id": "QUOTED1"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Referral (anúncio)

`message-referral`

Mensagem originada de um anúncio Click-to-WhatsApp.

POSTwebhook payload · message-referral.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511999998888"
              }
            ],
            "messages": [
              {
                "from": "5511999998888",
                "chat_type": "individual",
                "id": "WAMID_ADS",
                "timestamp": "1700000000",
                "type": "text",
                "text": {
                  "body": "vim do anúncio"
                },
                "referral": {
                  "source_url": "https://fb.me/x",
                  "source_id": "AD123",
                  "source_type": "ad",
                  "headline": "Promo",
                  "body": "Fale conosco",
                  "media_type": "image",
                  "thumbnail_url": "https://cdn/t.jpg",
                  "ctwa_clid": "CLID9"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem de grupo

`message-group`

Mensagem enviada dentro de um grupo.

POSTwebhook payload · message-group.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Fulano"
                },
                "wa_id": "5511777776666"
              }
            ],
            "messages": [
              {
                "from": "5511777776666",
                "chat_type": "group",
                "group_id": "[email protected]",
                "id": "WAMID_GRP",
                "timestamp": "1700000000",
                "type": "text",
                "text": {
                  "body": "oi grupo"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Mensagem enviada por você

`message-from-me`

Eco de uma mensagem enviada pela própria instância.

POSTwebhook payload · message-from-me.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "profile": {
                  "name": "Eu"
                },
                "wa_id": "5566996852025"
              }
            ],
            "messages": [
              {
                "from": "5566996852025",
                "chat_type": "individual",
                "id": "WAMID_OUT",
                "timestamp": "1700000000",
                "type": "text",
                "text": {
                  "body": "msg minha"
                },
                "from_me": true
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Edit

`message-edit`

POSTwebhook payload · message-edit.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "messages": [
              {
                "from": "5511999998888",
                "id": "WAMID_ORIG",
                "timestamp": "1700000000",
                "type": "edit",
                "edit": {
                  "original_message_id": "WAMID_ORIG",
                  "message": {
                    "type": "text",
                    "text": {
                      "body": "mensagem corrigida"
                    }
                  }
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status: enviada

`status-sent`

Mensagem foi enviada ao servidor.

POSTwebhook payload · status-sent.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_TEXT",
                "status": "sent",
                "timestamp": "1700000000",
                "recipient_id": "5511999998888",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status: entregue

`status-delivered`

Mensagem entregue no dispositivo do destinatário.

POSTwebhook payload · status-delivered.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_TEXT",
                "status": "delivered",
                "timestamp": "1700000000",
                "recipient_id": "5511999998888",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status: lida

`status-read`

Mensagem lida pelo destinatário.

POSTwebhook payload · status-read.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_TEXT",
                "status": "read",
                "timestamp": "1700000000",
                "recipient_id": "5511999998888",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status Played

`status-played`

POSTwebhook payload · status-played.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_AUD",
                "status": "played",
                "timestamp": "1700000000",
                "recipient_id": "5511999998888",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status Group

`status-group`

POSTwebhook payload · status-group.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_GRP",
                "status": "delivered",
                "timestamp": "1700000000",
                "recipient_id": "[email protected]",
                "recipient_type": "group",
                "recipient_participant_id": "5511999998888",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status: falha

`status-failed`

Falha ao entregar a mensagem.

POSTwebhook payload · status-failed.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_TEXT",
                "status": "failed",
                "timestamp": "1700000000",
                "recipient_id": "5511999998888",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                },
                "errors": [
                  {
                    "code": 463,
                    "title": "Conta restringida",
                    "message": "Conta restringida",
                    "error_data": {
                      "details": "463"
                    }
                  }
                ]
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Recibo (receipt)

`receipt`

Confirmação de recebimento/leitura.

POSTwebhook payload · receipt.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "WAMID_TEXT",
                "status": "read",
                "timestamp": "1700000005",
                "recipient_id": "5511777776666",
                "conversation": {
                  "id": null,
                  "expiration_timestamp": null,
                  "origin": {
                    "type": null
                  }
                },
                "pricing": {
                  "billable": null,
                  "pricing_model": null,
                  "type": null,
                  "category": null
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Text Instagram

`message-text-instagram`

POSTwebhook payload · message-text-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "1700000000000000",
                "profile": {
                  "name": "Fulano",
                  "username": "fulano",
                  "picture": "https://cdn.instagram.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "1700000000000000",
                "from_user_id": "1700000000000000",
                "id": "aWdfEXAMPLEMID",
                "timestamp": "1700000000",
                "text": {
                  "body": "Olá!"
                },
                "type": "text"
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Image Instagram

`message-image-instagram`

POSTwebhook payload · message-image-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "1700000000000000",
                "profile": {
                  "name": "Fulano",
                  "username": "fulano",
                  "picture": "https://cdn.instagram.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "1700000000000000",
                "from_user_id": "1700000000000000",
                "id": "aWdfEXAMPLEMID",
                "timestamp": "1700000000",
                "type": "image",
                "image": {
                  "url": "https://cdn.instagram.com/img.jpg",
                  "mime_type": "image/jpeg",
                  "caption": "foto"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Reel Instagram

`message-reel-instagram`

POSTwebhook payload · message-reel-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "1700000000000000",
                "profile": {
                  "name": "Fulano",
                  "username": "fulano",
                  "picture": "https://cdn.instagram.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "1700000000000000",
                "from_user_id": "1700000000000000",
                "id": "aWdfEXAMPLEMID",
                "timestamp": "1700000000",
                "type": "video",
                "video": {
                  "url": "https://www.instagram.com/reel/Da6LzXfuPL8/",
                  "mime_type": "video/mp4",
                  "caption": "título do reel"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Story Reply Instagram

`message-story-reply-instagram`

POSTwebhook payload · message-story-reply-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "1700000000000000",
                "profile": {
                  "name": "Fulano",
                  "username": "fulano",
                  "picture": "https://cdn.instagram.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "1700000000000000",
                "from_user_id": "1700000000000000",
                "id": "aWdfEXAMPLEMID",
                "timestamp": "1700000000",
                "text": {
                  "body": "que top!"
                },
                "type": "text",
                "context": {
                  "from": "your-instance-id",
                  "id": "17900000000000001",
                  "story": {
                    "url": "https://cdn.instagram.com/story.jpg"
                  }
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Story Mention Instagram

`message-story-mention-instagram`

POSTwebhook payload · message-story-mention-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "1700000000000000",
                "profile": {
                  "name": "Fulano",
                  "username": "fulano",
                  "picture": "https://cdn.instagram.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "1700000000000000",
                "from_user_id": "1700000000000000",
                "id": "aWdfEXAMPLEMID",
                "timestamp": "1700000000",
                "type": "image",
                "image": {
                  "url": "https://cdn.instagram.com/story.jpg",
                  "mime_type": "image/jpeg"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Unsupported Instagram

`message-unsupported-instagram`

POSTwebhook payload · message-unsupported-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "1700000000000000",
                "profile": {
                  "name": "Fulano",
                  "username": "fulano",
                  "picture": "https://cdn.instagram.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "1700000000000000",
                "from_user_id": "1700000000000000",
                "id": "aWdfEXAMPLEMID",
                "timestamp": "1700000000",
                "type": "unsupported",
                "errors": [
                  {
                    "code": 131051,
                    "title": "Unsupported message type",
                    "message": "Message type ephemeral is not supported",
                    "error_data": {
                      "details": "ephemeral"
                    }
                  }
                ]
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Text Messenger

`message-text-messenger`

POSTwebhook payload · message-text-messenger.json

copiar

```
{
  "object": "wame",
  "provider": "messenger",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "1020000000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "messenger",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "2600000000000000",
                "profile": {
                  "name": "Fulano",
                  "picture": "https://cdn.facebook.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "2600000000000000",
                "from_user_id": "2600000000000000",
                "id": "mEXAMPLEMID",
                "timestamp": "1700000000",
                "text": {
                  "body": "Olá!"
                },
                "type": "text"
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Message Image Messenger

`message-image-messenger`

POSTwebhook payload · message-image-messenger.json

copiar

```
{
  "object": "wame",
  "provider": "messenger",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "1020000000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "messenger",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "contacts": [
              {
                "wa_id": "",
                "user_id": "2600000000000000",
                "profile": {
                  "name": "Fulano",
                  "picture": "https://cdn.facebook.com/pic.jpg"
                }
              }
            ],
            "messages": [
              {
                "from": "2600000000000000",
                "from_user_id": "2600000000000000",
                "id": "mEXAMPLEMID",
                "timestamp": "1700000000",
                "type": "image",
                "image": {
                  "url": "https://cdn.facebook.com/img.jpg",
                  "mime_type": "image/jpeg",
                  "caption": "foto"
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status Read Instagram

`status-read-instagram`

POSTwebhook payload · status-read-instagram.json

copiar

```
{
  "object": "wame",
  "provider": "instagram",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "17841400000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "instagram",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "aWdfEXAMPLEMID",
                "status": "read",
                "timestamp": "1700000000",
                "recipient_id": "1700000000000000"
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status Delivered Messenger

`status-delivered-messenger`

POSTwebhook payload · status-delivered-messenger.json

copiar

```
{
  "object": "wame",
  "provider": "messenger",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "1020000000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "messenger",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "id": "mEXAMPLEMID",
                "status": "delivered",
                "timestamp": "1700000000",
                "recipient_id": "2600000000000000"
              }
            ]
          }
        }
      ]
    }
  ]
}
```

### Status Read Messenger

`status-read-messenger`

POSTwebhook payload · status-read-messenger.json

copiar

```
{
  "object": "wame",
  "provider": "messenger",
  "instance": "your-instance-id",
  "official": true,
  "entry": [
    {
      "id": "1020000000000000",
      "changes": [
        {
          "field": "messages",
          "value": {
            "messaging_product": "messenger",
            "metadata": {
              "phone_number_id": "your-instance-id"
            },
            "statuses": [
              {
                "status": "read",
                "timestamp": "1700000000",
                "recipient_id": "2600000000000000"
              }
            ]
          }
        }
      ]
    }
  ]
}
```

## Presença

field: presence

Digitando, gravando, online/offline.

### Presença

`presence`

Estado de presença de um contato.

POSTwebhook payload · presence.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "presence",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "presence": {
              "wa_id": "160301265768606",
              "status": "available"
            }
          }
        }
      ]
    }
  ]
}
```

## Conexão

field: connection

Abertura e encerramento da conexão da instância.

### Conexão aberta

`connection-open`

A instância conectou-se ao WhatsApp.

POSTwebhook payload · connection-open.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "connection",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "connection": {
              "status": "open",
              "code": 200
            }
          }
        }
      ]
    }
  ]
}
```

### Conexão encerrada

`connection-close`

A instância desconectou-se.

POSTwebhook payload · connection-close.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "connection",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "connection": {
              "status": "close",
              "code": 1004,
              "reason": "disconnected"
            }
          }
        }
      ]
    }
  ]
}
```

## QR Code

field: qrcode

Novo QR Code gerado para pareamento.

### QR Code

`qrcode`

Novo QR Code disponível para leitura.

POSTwebhook payload · qrcode.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "qrcode",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "qrcode": {
              "code": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA..."
            }
          }
        }
      ]
    }
  ]
}
```

## Chamadas

field: call

Chamadas recebidas de voz e vídeo.

### Chamada

`call`

Chamada recebida de voz ou vídeo.

POSTwebhook payload · call.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "call",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "calls": [
              {
                "id": "CALL1",
                "from": "5511999998888",
                "status": "offer",
                "from_jid": "[email protected]",
                "is_video": false,
                "is_group": false,
                "timestamp": "1700000000"
              }
            ]
          }
        }
      ]
    }
  ]
}
```

## Grupos

field: groups

Alterações em participantes e metadados de grupos.

### Participantes do grupo

`group-participants`

Entrada, saída, promoção ou remoção de membros.

POSTwebhook payload · group-participants.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "groups",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "groups": {
              "event": "participants_updated",
              "id": "[email protected]",
              "action": "add",
              "participants": [
                "[email protected]"
              ]
            }
          }
        }
      ]
    }
  ]
}
```

### Atualização de grupo

`group-update`

Alteração de nome, descrição ou configurações.

POSTwebhook payload · group-update.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "groups",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "groups": {
              "event": "update",
              "data": [
                {
                  "id": "[email protected]",
                  "subject": "Novo nome"
                }
              ]
            }
          }
        }
      ]
    }
  ]
}
```

## Health

field: health

Sinal de saúde da instância.

### Health check

`health`

Batimento de saúde emitido pela instância.

POSTwebhook payload · health.json

copiar

```
{
  "object": "wame",
  "provider": "whatsapp",
  "instance": "your-instance-id",
  "official": false,
  "entry": [
    {
      "id": "wame.eW91ci1pbnN0YW5jZS1pZA",
      "changes": [
        {
          "field": "health",
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "5566996852025",
              "phone_number_id": "your-instance-id"
            },
            "health": {
              "status": "restricted",
              "previous": "healthy",
              "reason": "many 463",
              "should_pause": true,
              "should_rotate": false
            }
          }
        }
      ]
    }
  ]
}
```

## Contexto para AI

Arquivos `.md` prontos para colar em assistentes de AI (Claude, ChatGPT, Copilot, Cursor). Eles descrevem os webhooks e a API em formato otimizado para que a AI te ajude a integrar.

#### Webhooks (llms/webhook)

Referência completa dos eventos de webhook e formatos (native, meta, both).

[Abrir no Claude](https://claude.ai/new?q=Leia%20a%20refer%C3%AAncia%20dos%20webhooks%20da%20WAME%20API%20em%20https%3A%2F%2Fus.api-wa.me%2Fllms%2Fwebhook%20e%20me%20ajude%20a%20tratar%20os%20eventos%20no%20meu%20projeto.) [Visualizar](https://us.api-wa.me/llms/webhook)

#### API completa (llms)

Contexto de toda a REST API: endpoints, parâmetros e exemplos.

[Abrir no Claude](https://claude.ai/new?q=Leia%20a%20documenta%C3%A7%C3%A3o%20da%20WAME%20API%20em%20https%3A%2F%2Fus.api-wa.me%2Fllms%20e%20me%20ajude%20a%20integrar%20o%20WhatsApp%20no%20meu%20projeto.) [Visualizar](https://us.api-wa.me/llms)

WAME API — Eventos & Webhooks

[Começar Agora](https://portal.api-wa.me/)

## Structured data

```json
{
  "@context": "https://schema.org",
  "@type": "WebSite",
  "name": "WAME API",
  "alternateName": "API Oficial e Não Oficial de WhatsApp, Instagram e Messenger",
  "url": "https://api-wa.me",
  "inLanguage": "pt-BR",
  "publisher": {
    "@type": "Organization",
    "name": "WAME API",
    "url": "https://api-wa.me"
  }
}
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "WAME API",
  "alternateName": "API Oficial e Não Oficial de WhatsApp, Instagram e Messenger",
  "url": "https://api-wa.me",
  "logo": "https://api-wa.me/images/screenshot.png",
  "foundingDate": "2017",
  "slogan": "Parceira Oficial da Meta — WhatsApp, Instagram e Messenger numa instância só. Desde 2017.",
  "description": "Plataforma brasileira e Parceira Oficial da Meta (Meta Business Partner) para as APIs oficiais de WhatsApp (Cloud API), Instagram Direct e Messenger — os três numa única instância, com os mesmos endpoints e um único formato de webhook. Também oferece a API não oficial via QR Code, na mesma plataforma. No mercado desde 2017, com mais de 50 mil instâncias criadas, 99,9% de uptime e suporte humano 24/7 em português. SDKs oficiais para Node.js/TypeScript e PHP.",
  "knowsAbout": [
    "WhatsApp Cloud API oficial (Meta)",
    "API oficial de Instagram (Direct)",
    "API oficial de Messenger",
    "API multicanal Meta",
    "Meta Business Partner",
    "WhatsApp API",
    "API não oficial de WhatsApp",
    "automação de WhatsApp",
    "números virtuais",
    "webhooks"
  ],
  "sameAs": [
    "https://github.com/raphaelvserafim"
  ],
  "contactPoint": {
    "@type": "ContactPoint",
    "contactType": "customer support",
    "url": "https://api-wa.me/contact",
    "availableLanguage": [
      "Portuguese"
    ]
  }
}
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 0,
      "name": "Home",
      "item": "https://api-wa.me"
    },
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Documentação",
      "item": "https://api-wa.me/docs"
    }
  ]
}
```
