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

# Introduction

> Hypersender WhatsApp API Docs - V2

The Hypersender WhatsApp API is a powerful api to send and recieve messages using your own whatsapp number. Without the high costs of Meta's Whatsapp business API.

In this Docs you'll learn how to use and integrate Hypersnder Whatsapp API into your existing system/service or application using simple API endpoints.

## What's New in V2?

<Info>
  **Queued Responses:** All requests in V2 are now queued for improved reliability and performance.
</Info>

When you make any API request, you'll receive an immediate response with a `queued_request_uuid`:

```json theme={null}
{
    "queued": true,
    "message": "Processing your request...",
    "queued_request_uuid": "a0816120-7e37-4e8b-8cf3-92deb2cdc133",
    "queued_request_link": "https://app.hypersender.com/api/whatsapp/v2/{instance}/queued-requests/a0816120-7e37-4e8b-8cf3-92deb2cdc133"
}
```

Use the `queued_request_link` or the [Get Queued Request](/v2/api-reference/whatsapp/queued-requests/get-queued-request) endpoint to check the actual message response once it's processed.

***

## What you can do?

* Send Text and basic Url messages.

* Send Media through Link or uploaded file.

* Send Audio through Link or uploaded file.

* Send Contact Card

* Send Location

* Send Poll votes

## You can also

* React to a message

* Forward messages to other chats

* Acknowledge messages (mark as read)

* Star and unstar messages

## Quick Demo

<Tip>
  Learn how to use Hypersender whatsapp API to send a message using Postman: [Demo Link](https://docs.hypersender.com/docs/hypersender/overview/how-to-send-whatsapp-message-in-postman).
</Tip>

## postman collection

You can download whatsapp API Postman Collection to easily interact with our API.

<a href="/v2/api-reference/whatsapp/whatsapp-collection.json" download>
  <Card title="Download Collection" icon="book-open">
    Download whatsapp API Postman Collection.
  </Card>
</a>

## Servers (Endpoints)

* Production (activated): [https://app.hypersender.com/api/whatsapp/v2](https://app.hypersender.com/api/whatsapp/v2)

## Authentication

All API endpoints are authenticated using Bearer tokens and picked up from the specification file.

```json theme={null}
"security": [
  {
    "bearerAuth": []
  }
]
```
