Get Contact
Retrieve a unified contact profile using their phone number.
GET
/v1/contacts/by-phone/:phoneNumberURL Parameters
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| phoneNumber | string | Yes | Recipient phone number in E.164 format. |
Implementation Examples
const res = await fetch('https://api.wadoot.com/v1/contacts/by-phone/+919876543210', {
headers: { 'X-API-KEY': 'YOUR_API_KEY_HERE' }
});
const contact = await res.json();