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>'
{
  "urn": "urn:li:member:987654321",
  "firstName": "William",
  "lastName": "Gates",
  "headline": "Co-chair, Bill & Melinda Gates Foundation",
  "location": "Seattle, Washington, United States",
  "profilePictureUrl": "https://media.licdn.com/dms/image/...",
  "about": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
  "experiences": [
    {
      "title": "Co-chair",
      "company": "Bill & Melinda Gates Foundation",
      "startDate": "2000-01",
      "endDate": null
    },
    {
      "title": "Co-founder",
      "company": "Microsoft",
      "startDate": "1975-04",
      "endDate": "2020-03"
    }
  ],
  "education": [
    {
      "school": "Harvard University",
      "degree": "Bachelor's degree, Computer Science",
      "startDate": "1973",
      "endDate": "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

{
  "urn": "urn:li:member:987654321",
  "firstName": "William",
  "lastName": "Gates",
  "headline": "Co-chair, Bill & Melinda Gates Foundation",
  "location": "Seattle, Washington, United States",
  "profilePictureUrl": "https://media.licdn.com/dms/image/...",
  "about": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
  "experiences": [
    {
      "title": "Co-chair",
      "company": "Bill & Melinda Gates Foundation",
      "startDate": "2000-01",
      "endDate": null
    },
    {
      "title": "Co-founder",
      "company": "Microsoft",
      "startDate": "1975-04",
      "endDate": "2020-03"
    }
  ],
  "education": [
    {
      "school": "Harvard University",
      "degree": "Bachelor's degree, Computer Science",
      "startDate": "1973",
      "endDate": "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

urn
string
firstName
string
lastName
string
headline
string
location
string
profilePictureUrl
string
about
string
experiences
object[]
education
object[]