Get Contact by Phone
Look up a single contact by their phone number. The phone number is sanitised before lookup (removes spaces, +, -, parentheses).
POST/v2.0/contacts/phone
Request Parameters
Body Parameters
| Parameter | Type | Description |
|---|---|---|
| phone | string | Phone number to look up |
| countryCode | string | Country code for local number resolution |
Tip
The phone number is automatically sanitised — spaces,
+ sign, dashes, and parentheses are removed before lookup.Code Examples
curl -X POST https://api.sendiee.com/v2.0/contacts/phone \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"phone": "919876543210",
"countryCode": "91"
}'Response
{
"success": true,
"data": {
"_id": "664...",
"phone": "919876543210",
"countryCode": "91",
"contactName": "John Doe",
"email": "[email protected]",
"platform": "whatsapp",
"lead_category": "Interested",
"source": "api",
"createdAt": "2025-01-01T00:00:00.000Z"
}
}Try It
Try it — API Playground