> For the complete documentation index, see [llms.txt](https://docs.risewallet.io/introduction/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.risewallet.io/introduction/integrations/rise-notifications/api-endpoints/broadcast-endpoint.md).

# Broadcast Endpoint

Broadcast messages have to go through the process of being manually approved before they are sent out at their scheduled time.

```javascript
POST /v1/casts/broadcast
Headers
{
  "Authorization": "Basic 5LQWBmQ1...FQD"
}
Body (JSON)
{
  "title": "New feature",
  "body": "We are releasing super cool feature at 1PM CET",
  "icon": "https://solflare.com/assets/logo-128.png",
  "image": "https://solflare.com/assets/logo-128.png",
  "platform": "all", 
  "topic": "general" ,
  "actionUrl": "https://solflare.com",
  "castAt": "2022-04-30T15:00:00.254Z" //UTC
}
Response
{
  "data": {
      "_id": "123...",
      "status": "pending",
      "title": "New feature",
      "body": "We are releasing super cool feature at 1PM CET",
      "icon": "https://solflare.com/assets/logo-128.png",
      "image": "https://solflare.com/assets/logo-128.png",
      "platform": "all", 
      "topic": "general" ,
      "actionUrl": "https://solflare.com",
      "castAt": "2022-04-30T15:00:00.254Z" //UTCjso
      ...
    }
}
```
