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

ParameterTypeDescription
phonestringPhone number to look up
countryCodestringCountry code for local number resolution

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