v1

latestOpenAPI 3.1.02026-07-241640107.8 KB
People Data API

⭐ Universal People Lookup Status API

Check Universal Person Lookup Status

get/universal/person/check_status

Query parameters

idsinteger[]

List of Profile IDs

Response

Success. Returns the status and profile data of the requested profiles.

idinteger

RocketReach internal unique profile ID

statusstring

Status of the profile lookup. Either "complete", "progress", "searching" or "not queued"

namestring nullable

Name of the profile

profile_picstring nullable

URL containing this profile's picture (if available).

linkedin_urlstring nullable

LinkedIn URL of the profile

connectionsinteger

Number of LinkedIn connections for this profile

locationstring nullable

Location of the profile

current_titlestring nullable

Current job title of the profile

current_employerstring nullable

Current employer of the profile

current_employer_idinteger

RocketReach internal unique company ID

current_employer_domainstring nullable

This person's company's domain name.

current_employer_websitestring nullable

This person's company's website.

current_employer_linkedin_urlstring nullable

This person's company's LinkedIn URL.

birth_yearstring

Year of birth of the profile

region_latitudenumber double nullable

Latitude of the region of the profile

region_longitudenumber double nullable

Longitude of the region of the profile

citystring nullable

City of the profile

regionstring nullable

Region of the profile

countrystring

Country of the profile

country_codestring nullable

Country code of the profile

return_cached_emailsboolean

Indicates if cached emails were returned in the initial synchronous response. If false, email fields will be null until the lookup is complete.

linkedin_url_activeboolean

Indicates if the LinkedIn profile exists or is no longer available.

  • True = Active (as of last update)
  • False = Unavailable (as of last update)
skillsstring[] nullable

[reveal_detailed_person_enrichment=true required or this field will not be returned] List of skills for the profile

linksobject

[reveal_detailed_person_enrichment=true required or this field will not be returned] Social media links for the profile

recommended_emailstring nullable

[reveal_personal_email OR reveal_professional_email=true required or this field will not be returned] Recommended email for the profile

recommended_personal_emailstring nullable

[reveal_personal_email=true required or this field will not be returned] Recommended personal email for the profile

current_personal_emailstring nullable

[reveal_personal_email=true required or this field will not be returned] Current personal email for the profile

recommended_professional_emailstring nullable

[reveal_professional_email=true required or this field will not be returned] Recommended professional email for the profile

current_work_emailstring nullable

[reveal_professional_email=true required or this field will not be returned] Current work email for the profile

Example response

[
  {
    "profile_list": {
      "id": 123456,
      "name": "Example List Name"
    },
    "status": "progress",
    "emails": [
      {
        "email": "info@rocketreach.co",
        "smtp_valid": "valid",
        "type": "professional",
        "last_validation_check": "2026-01-01T12:00:00Z",
        "grade": "A-"
      }
    ],
    "phones": [
      {
        "number": "+1 234-555-6789",
        "e164": "+12345556789",
        "country_code": "1",
        "extension": "123",
        "type": "mobile",
        "validity": "valid",
        "recommended": true,
        "premium": true
      }
    ]
  }
]