Find and Enrich Profiles on People with People API

Enhance Public Profiles

We help you enrich profile data, identify individuals from emails or names, search for prospects, and retrieve profile pictures

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://enrichlayer.com/api/people/profile/resolve'\
    --data-urlencode 'company_domain=longviewacquisition.com' \
    --data-urlencode 'first_name=John' \
    --data-urlencode 'similarity_checks=include' \
    --data-urlencode 'enrich_profile=enrich' \
    --data-urlencode 'location=Seattle'
Output Shape

Output

John Rodin illustration
Profile folder

Profile

John Rodin

CEO at Longview Acquisition Corp

Work

Education

Social

Contact

Posts

Other

People Lookup Endpoint

Identify people by a person's name and company information.

Input
curl \
  -G \
  -H "Authorization: Bearer ${YOUR_API_KEY}" \
  'https://enrichlayer.com/api/people/profile/resolve'\
  --data-urlencode 'company_domain=longviewacquisition.com' \
  --data-urlencode 'first_name=John' \
  --data-urlencode 'similarity_checks=include' \
  --data-urlencode 'enrich_profile=enrich' \
  --data-urlencode 'location=Seattle'
Output Shape

Output

{
  "company_similarity_score": 0.7894736842105263,
  "location_similarity_score": 0,
  "name_similarity_score": 1,
  "profile": {
    "activities": [],
    "articles": [],
    "background_cover_image_url": null,
    "birth_date": null,
    "certifications": [],
    "city": "New York",
    "connections": null,
    "country": "US",
    "country_full_name": "United States of America",
    "education": [
      {
        "activities_and_societies": null,
        "degree_name": null,
        "description": null,
        "ends_at": {
          "day": 1,
          "month": 1,
          "year": 1975
        },
        "field_of_study": null,
        "grade": null,
        "school": "University of Washington",
        "starts_at": {
          "day": 1,
          "month": 1,
          "year": 1973
        }
      },
      {
        "activities_and_societies": null,
        "degree_name": null,
        "description": null,
        "ends_at": null,
        "field_of_study": null,
        "grade": null,
        "school": "University of Washington",
        "starts_at": null
      }
    ],
    "experiences": [
      {
        "company": "Longview Acquisition Corp",
        "description": null,
        "ends_at": null,
        "location": null,
        "logo_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/company/longview-acquisition-corp/profile",
        "starts_at": {
          "day": 1,
          "month": 1,
          "year": 2000
        },
        "title": "CEO"
      },
      ...
    ],
    "first_name": "John",
    "full_name": "John Rodin",
    "headline": "CEO at Longview Acquisition Corp",
    "last_name": "Rodin",
    "occupation": "CEO at Longview Acquisition Corp",
    "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/person/john-rodin/profile",
    "public_identifier": "john-rodin",
    "state": "New York",
    "summary": "CEO at Longview Acquisition Corp",
    ...
  },
  "title_similarity_score": 70
}
People Profile Endpoint

Enrich a personal profile with structured data.

Input
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://enrichlayer.com/api/v2/person'\
    --data-urlencode 'fallback_to_cache=on-error'  \
    --data-urlencode 'use_cache=if-present' \
    --data-urlencode 'similarity_checks=include' \
    --data-urlencode 'skills=include' \
    --data-urlencode 'inferred_salary=include' \
    --data-urlencode 'personal_email=include' \
    --data-urlencode 'personal_contact_number=include'
Output Shape

Output

John Rodin photo

John Rodin

CEO at Longview Acquisition Corp

Personal email

Personal number

Industry

Articles

Extra

Other

{
  "accomplishment_courses": [],
  "accomplishment_publications": [],
  "articles": [],
  "background_cover_image_url": null,
  "birth_date": null,
  "certifications": [],
  "city": "New York",
  "connections": null,
  "country": "US",
  "country_full_name": "United States of America",
  "education": [
    {
      "activities_and_societies": null,
      "degree_name": null,
      "description": null,
      "ends_at": {
        "day": 1,
        "month": 1,
        "year": 1975
      },
      "field_of_study": null,
      "grade": null,
      "school": "University of Washington",
      "starts_at": {
        "day": 1,
        "month": 1,
        "year": 1973
      }
    },
    {
      "activities_and_societies": null,
      "degree_name": null,
      "description": null,
      "ends_at": null,
      "field_of_study": null,
      "grade": null,
      "school": "Lakeside School",
      "starts_at": null
    }
  ],
  "experiences": [
    {
      "company": "Longview Acquisition Corp",
      "description": null,
      "ends_at": null,
      "location": null,
      "logo_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/company/longview-acquisition-corp/profile",
      "starts_at": {
        "day": 1,
        "month": 1,
        "year": 2000
      },
      "title": "CEO"
    },
    ...
  ],
  "extra": {
    "facebook_profile_id": "facebook.com/johnrodin",
    "github_profile_id": "github.com/johnrodin",
    "twitter_profile_id": "twitter.com/johnrodin"
  },
  "first_name": "John",
  "full_name": "John Rodin",
  "headline": "CEO, Longview Acquisition Corp",
  "inferred_salary": {
    "max": null,
    "min": null
  },
  "interests": [
    "Bridge",
    "Developing New Vaccines",
    "Energy Policy",
    "Eradicating Polio",
    "Philanthropy and Volunteerism",
    ...
  ],
  "last_name": "Rodin",
  "occupation": "CEO at Longview Acquisition Corp",
  "personal_emails": [
    "[email protected]"
  ],
  "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/person/john-rodin/profile",
  "public_identifier": "john-rodin",
  "skills": [
    "Acquisition"
  ],
  "state": "New York",
  "summary": "CEO at Longview Acquisition Corp",
  ...
}
Role Lookup Endpoint

Identify people by a person's name and company information.

Input
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://enrichlayer.com/api/find/company/role'\
    --data-urlencode 'role=ceo' \
    --data-urlencode 'company_name=longview acquisition corp' \
    --data-urlencode 'enrich_profile=enrich'
Output Shape

Output

{
  "profile": {
    "city": "New York",
    "country": "US",
    "country_full_name": "United States of America",
    "education": [
      {
        "ends_at": {
          "day": 1,
          "month": 1,
          "year": 1975
        },
        "field_of_study": null,
        "grade": null,
        "school": "University of Washington",
        "starts_at": {
          "day": 1,
          "month": 1,
          "year": 1973
        }
      },
      {
        "activities_and_societies": null,
        "description": null,
        "school": "University of Washington",
        "starts_at": null
      }
    ],
    "experiences": [
      {
        "company": "Longview Acquisition Corp",
        "description": null,
        "ends_at": null,
        "location": null,
        "logo_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/company/longview-acquisition-corp/profile",
        "starts_at": {
          "day": 1,
          "month": 1,
          "year": 2000
        },
        "title": "CEO"
      },
      {
        "company": "Longview Acquisition Corp",
        "description": null,
        "ends_at": null,
        "location": null,
        "logo_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/company/longview-acquisition-corp/profile",
        "starts_at": {
          "day": 1,
          "month": 1,
          "year": 2015
        },
        "title": "Founder"
      },
      {
        "company": "Longview Acquisition Corp",
        "description": null,
        "ends_at": null,
        "location": null,
        "logo_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/company/longview-acquisition-corp/profile",
        "starts_at": {
          "day": 1,
          "month": 1,
          "year": 1975
        },
        "title": "Founder"
      }
    ],
    "extra": null,
    "first_name": "John",
    "follower_count": null,
    "full_name": "John Rodin",
    "gender": null,
    "groups": [],
    "headline": "CEO, Longview Acquisition Corp",
    "industry": null,
    "inferred_salary": null,
    "interests": [],
    "languages": [],
    "last_name": "Rodin",
    "occupation": "CEO at Longview Acquisition Corp",
    "people_also_viewed": [],
    "personal_emails": [],
    "personal_numbers": [],
    "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/enrichlayer/person/john-rodin/profile",
    "public_identifier": "john-rodin",
    "recommendations": [],
    "skills": [],
    "state": "New York",
    "summary": "CEO at Longview Acquisition Corp",
    "volunteer_work": []
  }
}
Profile Picture Endpoint

Enrich a personal profile with structured data.

Free
Input
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://enrichlayer.com/api/person/profile-picture'\
    --data-urlencode 'profile_url=john-rodin'
Output Shape

Output

Person Profile Picture
Person profile picture
{
    "profile_picture": "https://enrichlayer.com/s3/pictures/profile_picture_fgkvn_gh231.png"
}

Pricing Plans

We have pricing plans for every level of usage.

The Monthly and Annual subscription plans are for businesses with predictable use of credits. Credits purchased via subscriptions are priced at a lower rate and expire at the end of every billing cycle (month or year). The best pricing requires commitment and volume. Our Pay-as-you-go (PAYG) credits are perfect for casual API users and initial testing. However, they cost more.


+2 MONTHS FREE CREDITS

Starter

$0 / yr
0 credits
0 + 0
$0.000 / credit
12-month contract, paid annually
12+2 months credits issued immediately, expire in a year

+2 MONTHS FREE CREDITS

Growth

$0 / yr
0 credits
0 + 0
$0.000 / credit
12-month contract, paid annually
12+2 months credits issued immediately, expire in a year

+2 MONTHS FREE CREDITS

Pro

$0 / yr
0 credits
0 + 0
$0.000 / credit
12-month contract, paid annually
12+2 months credits issued immediately, expire in a year

+2 MONTHS FREE CREDITS

Ultra

$0 / yr
0 credits
0 + 0
$0.000 / credit
12-month contract, paid annually
12+2 months credits issued immediately, expire in a year

+2 MONTHS FREE CREDITS

Enterprise

> $0 / yr
> 0 credits
> 0 + 0
< $0.000 / credit
12-month contract, paid annually
12+2 months credits issued immediately, expire in a year