cURL
curl --request GET \ --url https://api.enviaai.app/v1/contacts \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "phone": "5511999999999", "name": "João Silva", "profilePicUrl": "https://pps.whatsapp.net/...", "about": "Disponível", "isBlocked": false }, { "phone": "5511988888888", "name": "João Santos", "profilePicUrl": null, "about": null, "isBlocked": false } ], "pagination": { "total": 2, "limit": 100, "offset": 0 } }
Liste contatos de uma instância
const contacts = await client.contacts.list({ instanceId: 'inst_abc123', search: 'João' }); contacts.data.forEach(contact => { console.log(`${contact.name}: ${contact.phone}`); });