Skip to main content
POST
/
v1
/
profile
/
enrich
curl -X POST https://api.trigify.io/v1/profile/enrich \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "profileUrl": "https://linkedin.com/in/iammorganparry"
  }'
{
  "message": "<string>",
  "success": true,
  "data": {
    "prospect": {
      "gender": "<string>",
      "job_title_levels": [
        "<string>"
      ],
      "open_to_work": true,
      "premium": true,
      "influencer": true,
      "languages": [
        "<string>"
      ],
      "job_title_role": "<string>",
      "job_title_sub_role": "<string>",
      "summary": "<string>",
      "follower_count": 123,
      "avatar": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "full_name": "<string>",
      "job_company_name": "<string>",
      "job_title": "<string>",
      "job_company_website": "<string>",
      "industry": "<string>",
      "location_name": "<string>",
      "location_country": "<string>",
      "linkedin_url": "<string>",
      "linkedin_urn": "<string>"
    },
    "experience": [
      {
        "company_name": "<string>",
        "job_title": "<string>",
        "location": "<string>",
        "start_date": "<string>",
        "end_date": "<string>",
        "company_logo": "<string>"
      }
    ]
  }
}
Enrich any LinkedIn profile with comprehensive professional data including current job details, complete work history, and detailed profile information.

Overview

The Profile Enrichment API transforms a simple LinkedIn profile URL into rich, structured data about that person’s professional background. Get instant access to current employment details, complete work history, education, skills, and other key professional information to power your sales, recruiting, and business development workflows.

Authentication

Requires a valid API key with the enrich:profile:read permission.
curl -X POST https://api.trigify.io/v1/profile/enrich \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "profileUrl": "https://linkedin.com/in/iammorganparry"
  }'

Response Structure

The endpoint returns comprehensive profile data including:

Prospect Data

  • Personal Information: Name, gender, location details
  • Professional Details: Current job title, company, industry
  • LinkedIn Metrics: Follower count, premium status, influencer status
  • Skills & Languages: Job title levels, languages spoken
  • Profile Elements: Summary, avatar, LinkedIn URL and URN

Experience Data

  • Work History: Complete employment history with companies, roles, and dates
  • Job Details: Job titles, company names, locations
  • Timeline: Start and end dates for each position
  • Company Logos: URLs to company logos where available

Credit Usage

This endpoint charges 1 credit per successful profile enrichment. The number of credits spent is returned in the x-spent-credits response header. Examples:
  • Successful enrichment: Uses 1 credit
  • Profile not found (404): Uses 0 credits
  • Service error (500): Uses 0 credits

Use Cases

  • Sales & Lead Qualification: Instantly understand a prospect’s role, seniority, and company background before your outreach
  • Recruitment & Talent Sourcing: Get comprehensive candidate profiles including career progression and skill sets
  • Account-Based Marketing: Map key decision makers and influencers within target accounts
  • CRM Data Enrichment: Automatically populate and update contact records with fresh professional data
  • Market Research: Analyze professional backgrounds and career patterns in your target industries
  • Partnership Development: Research potential partners and their professional networks

Profile URL Format

The profileUrl parameter should be the full LinkedIn profile URL:
  • Use the complete URL: "https://linkedin.com/in/username"
  • Works with custom URLs: "https://linkedin.com/in/john-smith"
  • Works with numeric IDs: "https://linkedin.com/in/john-smith-123456789"
The URL will be validated to ensure it’s a proper LinkedIn profile URL format.

Headers

x-api-key
string
required

Body

application/json
profileUrl
string
required

The LinkedIn profile URL to enrich. ex: 'https://linkedin.com/in/username'

Response

200 - application/json

Successfully enriched profile

message
string
required
success
boolean
required
data
object
required