Retrieve contacts from your WhatsApp instance with filtering and pagination.
curl --request POST \
--url https://api.example.com/chat/findContacts/my-instance \
--header 'apikey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"limit": 50,
"offset": 0,
"sort": {
"field": "pushName",
"order": "asc"
}
}'
{
"contacts": [
{
"id": "contact_123",
"remoteJid": "5511999999999@s.whatsapp.net",
"pushName": "John Doe",
"owner": "my-instance",
"profilePictureUrl": "https://example.com/profile-john.jpg",
"createdAt": "2024-03-04T10:30:00.000Z",
"updatedAt": "2024-03-04T12:45:00.000Z"
},
{
"id": "contact_456",
"remoteJid": "5511888888888@s.whatsapp.net",
"pushName": "Jane Smith",
"owner": "my-instance",
"profilePictureUrl": "https://example.com/profile-jane.jpg",
"createdAt": "2024-03-03T15:20:00.000Z",
"updatedAt": "2024-03-04T11:30:00.000Z"
}
],
"total": 2
}
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/EvolutionAPI/evolution-api/llms.txt
Use this file to discover all available pages before exploring further.
apikey header.
Show properties
curl --request POST \
--url https://api.example.com/chat/findContacts/my-instance \
--header 'apikey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"limit": 50,
"offset": 0,
"sort": {
"field": "pushName",
"order": "asc"
}
}'
{
"contacts": [
{
"id": "contact_123",
"remoteJid": "5511999999999@s.whatsapp.net",
"pushName": "John Doe",
"owner": "my-instance",
"profilePictureUrl": "https://example.com/profile-john.jpg",
"createdAt": "2024-03-04T10:30:00.000Z",
"updatedAt": "2024-03-04T12:45:00.000Z"
},
{
"id": "contact_456",
"remoteJid": "5511888888888@s.whatsapp.net",
"pushName": "Jane Smith",
"owner": "my-instance",
"profilePictureUrl": "https://example.com/profile-jane.jpg",
"createdAt": "2024-03-03T15:20:00.000Z",
"updatedAt": "2024-03-04T11:30:00.000Z"
}
],
"total": 2
}
limit and offset to efficiently load large contact lists.pushName field reflects the name set by the contact themselves, not your saved contact name.curl --request POST \
--url https://api.example.com/chat/findContacts/my-instance \
--header 'apikey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"limit": 50,
"offset": 0,
"sort": {
"field": "pushName",
"order": "asc"
}
}'
{
"contacts": [
{
"id": "contact_123",
"remoteJid": "5511999999999@s.whatsapp.net",
"pushName": "John Doe",
"owner": "my-instance",
"profilePictureUrl": "https://example.com/profile-john.jpg",
"createdAt": "2024-03-04T10:30:00.000Z",
"updatedAt": "2024-03-04T12:45:00.000Z"
},
{
"id": "contact_456",
"remoteJid": "5511888888888@s.whatsapp.net",
"pushName": "Jane Smith",
"owner": "my-instance",
"profilePictureUrl": "https://example.com/profile-jane.jpg",
"createdAt": "2024-03-03T15:20:00.000Z",
"updatedAt": "2024-03-04T11:30:00.000Z"
}
],
"total": 2
}