WasenderApi - Low Cost WhatsApp API for Developers Get All Contacts - API Documentation - WasenderApi - Low Cost WhatsApp API for Developers
WasenderApi API

API Documentation

WasenderApi WhatsApp API

Get All Contacts

Contacts

GET/api/contacts

Retrieves a list of all contacts synced with the WhatsApp session.

Get All Contacts

Retrieves a list of all contacts synced with the WhatsApp session.

If the list is empty, it may mean no contacts are currently synced or available, or the initial sync is still in progress. If you connected your session before 5/8/2025, you must reconnect it to sync them correctly.

Code Examples

curl "https://www.wasenderapi.com/api/contacts"
  -H "Authorization: Bearer YOUR_API_KEY"

Response Examples

{
    "success": true,
    "data": [
        {
            "jid": "1234567890",
            "name": "Contact Name",
            "notify": "Contact Display Name",
            "verifiedName": "Verified Business Name",
            "imgUrl": "https:\/\/profile.pic.url\/image.jpg",
            "status": "Hey there! I am using WhatsApp."
        }
    ]
}