Skip to main content
GET
/
api
/
v1
/
profile
Get LinkedIn profile information
curl --request GET \
  --url https://api.fetchin.io/api/v1/profile \
  --header 'X-API-Key: <api-key>'
{
  "id": "urn:li:fsd_profile:ACoAAABCDEF",
  "firstName": "William",
  "lastName": "Gates",
  "title": "Co-chair, Bill & Melinda Gates Foundation",
  "description": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
  "location": "Seattle, Washington, United States",
  "profilePictureUrl": "https://media.licdn.com/dms/image/...",
  "experiences": [
    {
      "name": "Bill & Melinda Gates Foundation",
      "jobTitle": "Co-chair",
      "description": "",
      "dateRange": "Jan 2000 - Present"
    },
    {
      "name": "Microsoft",
      "jobTitle": "Co-founder",
      "description": "",
      "dateRange": "Apr 1975 - Mar 2020"
    }
  ],
  "educations": [
    {
      "name": "Harvard University",
      "description": "Bachelor's degree, Computer Science",
      "dateRange": "1973 - 1975"
    }
  ]
}

Endpoint

GET /api/v1/profile

Authentication

Include your API key in the request header:
X-API-Key: your-api-key-here

Parameters

profileUrlOrUrn
string
required
LinkedIn profile URL or URN.Examples:
  • https://www.linkedin.com/in/username
  • urn:li:member:123456789

Response

profile
object
LinkedIn profile information

Example Request

curl -X GET "https://api.fetchin.io/api/v1/profile?profileUrlOrUrn=https://www.linkedin.com/in/williamhgates" \
  -H "X-API-Key: your-api-key-here"

Example Response

{
  "id": "urn:li:fsd_profile:ACoAAABCDEF",
  "firstName": "William",
  "lastName": "Gates",
  "title": "Co-chair, Bill & Melinda Gates Foundation",
  "description": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
  "location": "Seattle, Washington, United States",
  "profilePictureUrl": "https://media.licdn.com/dms/image/...",
  "experiences": [
    {
      "name": "Bill & Melinda Gates Foundation",
      "jobTitle": "Co-chair",
      "description": "",
      "dateRange": "Jan 2000 - Present"
    },
    {
      "name": "Microsoft",
      "jobTitle": "Co-founder",
      "description": "",
      "dateRange": "Apr 1975 - Mar 2020"
    }
  ],
  "educations": [
    {
      "name": "Harvard University",
      "description": "Bachelor's degree, Computer Science",
      "dateRange": "1973 - 1975"
    }
  ]
}

Notes

This endpoint counts as 1 request toward your monthly quota. Failed requests (errors) do not count against your quota.
Profile data is fetched in real-time from LinkedIn. Response times may vary.
Cache profile data for frequently accessed profiles to optimize quota usage.

Use Cases

Lead enrichment

Enhance your CRM with up-to-date LinkedIn profile data

Recruitment

Build candidate profiles from LinkedIn data

Research

Analyze professional backgrounds and career paths

Verification

Verify professional credentials and work history

Authorizations

X-API-Key
string
header
required

Query Parameters

profileUrlOrUrn
string
required

LinkedIn profile URL or URN

Example:

"https://www.linkedin.com/in/username"

Response

Successfully fetched profile

id
string

LinkedIn profile URN (unique identifier)

Example:

"urn:li:fsd_profile:ACoAAABCDEF"

firstName
string
lastName
string
title
string

Professional headline

description
string

About/summary section

location
string
profilePictureUrl
string
experiences
object[]
educations
object[]