메인 콘텐츠로 건너뛰기
POST
/
redeem
/
people
/
contact
/
lookup
연락처 식별자로 인물 조회
curl --request POST \
  --url https://api.pubrio.com/redeem/people/contact/lookup \
  --header 'Content-Type: application/json' \
  --header 'pubrio-api-key: <api-key>' \
  --data '
{
  "email": "[email protected]",
  "phone": "+15551234567",
  "first_name": "King",
  "last_name": "Lai",
  "domain": "pubrio.com",
  "company": "Pubrio",
  "is_enable_similarity_search": true,
  "profile_id": 123
}
'
{
  "data": {
    "profile": {
      "credit": 450375,
      "topup_credit": 235236,
      "total_credit_cost": 1
    },
    "peoples": [
      {
        "people_search_id": "e37ccf38-ea8f-422e-9874-cb23b15e8fe4",
        "first_name": "King",
        "last_name": "Lai",
        "people_name": "King Lai",
        "company_name": "Pubrio",
        "domain": "pubrio.com",
        "match": {
          "confidence": "exact",
          "input": {
            "value": "[email protected]",
            "type": "email-work"
          },
          "is_duplicate_input": false
        }
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pubrio.com/llms.txt

Use this file to discover all available pages before exploring further.

인증

pubrio-api-key
string
header
필수

API에서 수행하는 작업 및 해당 권한을 식별하는 고유한 API 토큰입니다. 이 토큰은 설정 섹션에서 생성할 수 있습니다.

본문

application/json
email
string<email>
필수

조회할 업무용 또는 개인 이메일 주소. 시스템은 매칭 전 대소문자와 공백을 정규화합니다.

phone
string

조회할 전화번호. 국제 형식(E.164)을 권장합니다.

예시:

"+15551234567"

first_name
string

이름. is_enable_similarity_searchtrue 일 때 last_namedomain 또는 company 와 함께 사용합니다.

예시:

"King"

last_name
string

성. is_enable_similarity_searchtrue 일 때 first_namedomain 또는 company 와 함께 사용합니다.

예시:

"Lai"

domain
string

회사 도메인. is_enable_similarity_searchtrue 일 때 first_name + last_name 과 함께 유사도 검색의 기준점으로 사용됩니다.

예시:

"pubrio.com"

company
string

회사명. is_enable_similarity_searchtrue 이고 domain 이 제공되지 않은 경우 first_name + last_name 과 함께 유사도 검색의 기준점으로 사용됩니다.

예시:

"Pubrio"

true 인 경우 정확한 이메일/전화번호 일치가 없으면 이름 기반 유사도 매칭으로 폴백합니다. first_name, last_name, 그리고 domain 또는 company 가 필요합니다.

예시:

true

profile_id
integer

선택 사항. 요청을 수행하는 팀 식별자입니다. API 키에 이미 워크스페이스 정보가 포함되어 있으므로 이 매개변수는 더 이상 필수가 아닙니다. 제공되면 조회 및 사용 크레딧 추적을 위해 특정 팀(작업 공간)과 연계됩니다.

자세한 내용은 팀 탭의 user details 엔드포인트를 참고하세요.

응답

매칭된 인물과 매칭 메타데이터가 포함된 성공 응답.

data
object

응답 정보는 특정 API에 따라 다릅니다.