Get Contact

Retrieve a unified contact profile using their phone number.

GET/v1/contacts/by-phone/:phoneNumber

URL Parameters

Parameters

ParameterTypeRequiredDescription
phoneNumberstringYesRecipient 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();