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

# Sticker

> Send a WhatsApp sticker message

## Request

`type` must be `sticker`.

### Field types

* `to`: string (required)
* `type`: string = `sticker` (required)
* `sticker`: object (required)
* `sticker.link`: string (required)

### Supported formats and max size

* Static sticker: `.webp` (`image/webp`), max 100 KB
* Animated sticker: `.webp` (`image/webp`), max 500 KB
* WebP files are only supported for sticker messages.

```json theme={null}
{
  "to": "+573001112233",
  "type": "sticker",
  "sticker": {
    "link": "https://example.com/sticker.webp"
  }
}
```
