GET
/api/contacts/{contactPhoneNumber}
Retrieves detailed information for a specific contact.
Get Contact Info
Retrieves detailed information for a specific contact.
Parameters
Name | Type | Required | Description |
---|---|---|---|
contactPhoneNumber | string | Yes | The JID (Jabber ID) of the contact in E.164 format (international phone number) e.g., 1234567890. |
Code Examples
curl "https://www.wasenderapi.com/api/contacts/{contactPhoneNumber}"
-H "Authorization: Bearer YOUR_API_KEY"
Response Examples
{
"success": true,
"data": {
"id": "1234567890@placeholder.net",
"name": "Contact Name",
"notify": "Notification Name",
"verifiedName": null,
"imgUrl": null,
"status": null
}
}