Skip to main content
POST
Look up a person by contact identifier

Authorizations

pubrio-api-key
string
header
required

A unique API token that represents the actions you perform through the API and the corresponding permissions and operations. You can create it through the Settings section.

Body

application/json
email
string<email>
required

Work or personal email address to look up. The system normalizes case and whitespace before matching.

phone
string

Phone number to look up. International (E.164) format is recommended.

Example:

"+15551234567"

first_name
string

First name. Used together with last_name and either domain or company when is_enable_similarity_search is true.

Example:

"King"

last_name
string

Last name. Used together with first_name and either domain or company when is_enable_similarity_search is true.

Example:

"Lai"

domain
string

Company domain used as a similarity-search anchor together with first_name + last_name when is_enable_similarity_search is true.

Example:

"pubrio.com"

company
string

Company name used as a similarity-search anchor together with first_name + last_name when is_enable_similarity_search is true and domain is not provided.

Example:

"Pubrio"

When true, falls back to a name-based similarity match if no exact email/phone hit is found. Requires first_name, last_name, and either domain or company.

Example:

true

Response

Successful response containing the matched person and match metadata.

data
object

Response info depends on specific endpoint.

Last modified on May 2, 2026