GET
/api/contacts/{contactPhoneNumber}/picture
Retrieves the URL of the profile picture for a specific contact.
Get Contact Profile Picture
Retrieves the URL of the profile picture 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}/picture"
-H "Authorization: Bearer YOUR_API_KEY"
Response Examples
{
"success": true,
"data": {
"imgUrl": "https:\/\/profile.pic.url\/image.jpg"
}
}