Get Contact by Identifier
Get a specific contact by its identifier (ID, phone number, or email)
This endpoint allows you to retrieve a specific contact using different types of identifiers such as ID, phone number, or email address. This flexibility makes it easier to find contacts when you don’t have their unique ID.
Use Cases
- Find a contact using their phone number when you don’t have their ID
- Look up a contact by their email address
- Verify if a contact already exists in your system
- Retrieve contact details before making a call or sending a message
Path Parameters
The contact identifier, which can be an ID, phone number, or email address. For phone numbers, use international format (e.g., +12124567890).
Query Parameters
Specifies what type of identifier is being used. Possible values:
id
(default): Use when the identifier is the contact’s unique IDphone_number
: Use when the identifier is a phone numberemail
: Use when the identifier is an email address
Headers
Your API key for authentication. You can find this in your dashboard under API settings.
Response
200 on success
The unique identifier of the contact (UUID format)
The timestamp when the contact was created (ISO 8601 format)
The phone number of the contact in international format (e.g., +12124567890)
The full name of the contact
The country of the contact
The email of the contact
Description or notes about the contact
Additional data associated with the contact
The ID of the organization the contact belongs to
Error Codes
400 Bad Request
- Invalid identifier format401 Unauthorized
- Invalid or missing API key404 Not Found
- Contact not found500 Internal Server Error
- Server-side error
Code Examples
Notes and Best Practices
- When using phone numbers as identifiers, always use the international format (e.g., +12124567890)
- Remember to URL-encode identifiers, especially email addresses and phone numbers with special characters
- The ID lookup is generally faster than lookups by email or phone number
- If you’re unsure whether a contact exists, use this endpoint to check before creating a new contact
- Consider implementing caching mechanisms for frequently accessed contacts