# Sending Stickers

## Introduction&#x20;

Stickers are a great way to add more fun and make the conversation more lively, WhatsApp Official & WhatsApp Web Automation supports Stickers & Animated Stickers.&#x20;

## Stickers Common Rules

1. Each sticker should have a transparent background.&#x20;
2. Stickers must be exactly 512x512 pixels.&#x20;
3. Each sticker must be less than 100 KB.
4. Supports only .png & .webp file formats

Kindly refer to the WhatsApp Official Documentation for more details on [how to create stickers.](<https://faq.whatsapp.com/general/how-to-create-stickers-for-whatsapp >)

## Type of Stickers&#x20;

WhatsApp Support 2 types of Stickers as below;

1. [Normal Sticker](/api-documentation-v2/push-api/sending-stickers.md#normal-sticker)
2. [Animated Sticker](/api-documentation-v2/push-api/sending-stickers.md#animated-stickers)

### Normal Sticker

This is the widely used Sticker format, you can create your own branded sticker, just save the  image as **`.png`** file, just make sure the background is transparent and dimension is set to **512 x 512 pixel** and not exceeding **100 KB size**, you can explore more samples here [https://getstickerpack.com/stickers ](<https://getstickerpack.com/stickers >)

[**Sample Sticker**](https://s3.getstickerpack.com/storage/uploads/sticker-pack/good-morning-quaroutine-greetings/sticker_2.png)

### Animated Stickers

Animated stickers are a great way to express emotions, animated stickers must be in the **.webp** format, you can convert a gif file to webp format using an online convert like <https://ezgif.com/gif-to-webp>, just make sure the dimension is 512 x 512 pixel and size not exceeding 100 KB

[**Sample Animated Sticker** ](https://pickyassist.com/resources/sample.webp)

## Sample API Request&#x20;

### Endpoint (POST Method)

```
https://pickyassist.com/app/api/v2/push
```

### Request URL (V4)

Method : **`POST`**

```
https://app.pickyassist.com/api/v2/push
```

### Sample Push API

```
{
   "token":"yourtoken",
   "application":"10",
   "globalmedia":"https://pickyassist.com/resources/sample.webp",
   "sticker":1,
   "data":[
      {
         "number":"94005507",
         "message":""
      }
   ]
}
```


---

# 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://help.pickyassist.com/api-documentation-v2/push-api/sending-stickers.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.
