# Send post to WhatsApp Channel

{% embed url="<https://youtu.be/IVxsndTXp-4>" %}

Our Cloud API supports WhatsApp Channels, a brand-new feature introduced by WhatsApp. It’s a unidirectional broadcast tool where administrators can send text, photos, videos, stickers, and polls. And users receive push notifications of updates from the channel like a private message.

To send a message to the channel you need to know the channel ID.

In order to find out the identifier use the following method: [GET /newsletters](https://whapi.readme.io/reference/getnewsletters)

```sh
curl --request GET \
     --url 'https://gate.whapi.cloud/newsletters?count=100' \
     --header 'accept: application/json' \
     --header 'authorization: Bearer iB1vpNBhV4sbdSPwVwcczBDCXo2bBmcs'
```

The channel ID looks like this: `120363171744447809@newsletter`&#x20;

Once you know the channel ID, you can use the method to send any message. For example, a text message:&#x20;

{% embed url="<https://whapi.readme.io/reference/sendmessagetext>" %}

In the `“to”` parameter you insert the ID of the channel ( `120363171744447809@newsletter` ) you want to send the message to. And in the `“body”,` the text of the message

```sh
curl --request POST \
     --url https://gate.whapi.cloud/messages/text \
     --header 'accept: application/json' \
     --header 'authorization: Bearer iB1vpNBhVwc4sbdSPwczBDVCXo2bBmcs' \
     --header 'content-type: application/json' \
     --data '
{
  "typing_time": 0,
  "to": "120208836317406034@newsletter",
  "body": "Hello, World!"
}
'
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.whapi.cloud/help-desk/sending/send-post-to-whatsapp-channel.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
