Skip to content

Create Lookup

Generate a comprehensive report about a person. Reports typically complete within 3-5 minutes.

POST https://api.whitebridge.ai/lookups

Request Parameters

ParameterTypeRequiredDescription
candidateIdstringYes*The unique identifier for the candidate (from search results).
candidateobjectYes*Candidate details object (see structure below).
sectionsstring[]YesSections to include in the report (see available sections below).
webhookUrlstringNoURL to notify when lookup completes.
previewbooleanNoIf true, only performs a basic pre-check with minimal information. Set to false to create a full lookup that deducts credit.
metadataobjectNoAdditional metadata as key-value pairs.

*Either candidateId OR candidate is required, not both.

Candidate Object

FieldTypeRequiredDescription
fullNamestringYesThe full name of the candidate.
avatarUrlstringNoURL to the candidate's profile picture.
emailstringNoThe candidate's email address.
sourcesstring[]NoURLs containing information about the person (social media profiles, personal websites, etc.).

Available Sections

SectionDescription
overviewOverview
sellingBehavior & Interaction Insights
careerCareer
leisureLeisure & Hobbies
eventsEvents & Media
adverseMediaNegative Media
galleryPhotos
socialMediaSocial Media
onlinePresenceOnline Presence
dataBreachesData Breaches

Examples

Using Candidate ID

json
{
  "candidateId": "li-joe-doe-example",
  "sections": ["overview", "selling", "career"],
  "webhookUrl": "https://example.com/webhook",
  "preview": false
}

Using Candidate Details

json
{
  "candidate": {
    "fullName": "Joe Doe",
    "email": "joe.doe@example.com",
    "sources": ["https://linkedin.com/in/joedoe"]
  },
  "sections": ["overview", "selling", "career"],
  "preview": false
}

Response

json
{
  "lookupId": "48abcc2b-f0c6-4a6b-b203-be14ab3a80da"
}

Accessing Reports

Once created, access your report in three formats:

  • HTML: https://search.whitebridge.ai/{lookupId} - For viewing in browser
  • JSON: https://api.whitebridge.ai/lookups/{lookupId} - For API integration
  • PDF: See Download PDF documentation