Skip to main content
GET
/
api
/
v2
/
linkedin
/
profile
/
info
LinkedIn Profile Info
curl --request GET \
  --url https://piloterr.com/api/v2/linkedin/profile/info \
  --header 'x-api-key: <x-api-key>'
{
  "profile": {
    "full_name": "<string>",
    "username": "<string>",
    "headline": "<string>",
    "follower_count": 123,
    "connection_count": 123,
    "summary": "<string>",
    "profile_url": "<string>",
    "photo_url": "<string>",
    "background_url": "<string>",
    "languages": [
      {}
    ],
    "address": {
      "city": "<string>",
      "county": "<string>",
      "state": "<string>",
      "country": "<string>",
      "country_code": "<string>"
    },
    "experiences": [
      {
        "title": "<string>",
        "company": "<string>",
        "company_url": "<string>",
        "location": "<string>",
        "description": "<string>",
        "start_date": "<string>",
        "end_date": "<string>",
        "duration": "<string>",
        "address": {
          "city": "<string>",
          "county": "<string>",
          "state": "<string>",
          "country": "<string>",
          "country_code": "<string>"
        }
      }
    ],
    "educations": [
      {
        "school": "<string>",
        "school_url": "<string>",
        "location": "<string>",
        "description": "<string>",
        "start_date": "<string>",
        "end_date": "<string>",
        "address": {
          "city": "<string>",
          "county": "<string>",
          "state": "<string>",
          "country": "<string>",
          "country_code": "<string>"
        }
      }
    ],
    "articles": [
      {
        "title": "<string>",
        "url": "<string>",
        "author": "<string>"
      }
    ],
    "activities": [
      {
        "title": "<string>",
        "url": "<string>",
        "activity_status": "<string>"
      }
    ],
    "recommendations": [
      {
        "full_name": "<string>",
        "text": "<string>"
      }
    ],
    "section_certifications": [
      {
        "authority": "<string>",
        "url": "<string>",
        "start_at": "<string>",
        "end_at": "<string>"
      }
    ],
    "section_projects": [
      {
        "title": "<string>",
        "description": "<string>",
        "url": "<string>",
        "start_at": "<string>",
        "end_at": "<string>"
      }
    ],
    "section_publications": [
      {
        "title": "<string>",
        "publisher": "<string>",
        "published_on": "<string>",
        "description": "<string>",
        "url": "<string>"
      }
    ],
    "section_volunteer_experiences": [
      {
        "title": "<string>",
        "company": "<string>",
        "company_url": "<string>",
        "cause": "<string>",
        "start_at": "<string>",
        "end_at": "<string>",
        "description": "<string>"
      }
    ],
    "section_honors_awards": [
      {
        "title": "<string>",
        "issuer": "<string>",
        "issued_on": "<string>",
        "description": "<string>"
      }
    ],
    "section_patents": [
      {
        "title": "<string>",
        "issued_on": "<string>",
        "description": "<string>",
        "patent": "<string>",
        "url": "<string>"
      }
    ],
    "section_courses": [
      {
        "title": "<string>",
        "number": "<string>"
      }
    ],
    "section_organizations": [
      {
        "title": "<string>",
        "organization": "<string>",
        "start_at": "<string>",
        "end_at": "<string>",
        "description": "<string>"
      }
    ],
    "section_test_scores": [
      {
        "title": "<string>",
        "score": "<string>",
        "description": "<string>",
        "date_on": "<string>"
      }
    ],
    "section_people_also_viewed": [
      {
        "name": "<string>",
        "url": "<string>",
        "summary": "<string>",
        "location": "<string>"
      }
    ],
    "card_current_position": {
      "name": "<string>",
      "url": "<string>"
    },
    "card_current_education": {
      "name": "<string>",
      "url": "<string>"
    },
    "website_url": "<string>"
  }
}
This LinkedIn Profile Info API will extract every piece of publicly available data (including name, current job, company, education, and professional) in just a few seconds.
x-api-key
string
required
This parameter specifies the private key you’ll need for Piloterr access.

Parameters

query
string
Linkedin URL or username of the target profile like https://www.linkedin.com/in/williamhgates or williamhgates

Response

profile
Profile Object
I