LinkedIn Person

POST5 Credits
https://api.crawlkit.sh/v1/crawl/linkedin/person

Extract LinkedIn profile data including work history, education, skills, and certifications. Ideal for recruiting and outbound research.

Try on Playground

Authentication

Send your Crawlkit API key as a Bearer token in the Authorization header.

Authorization: Bearer ck_your_api_key

Request Parameters

Send these JSON body fields in your request payload.

NameTypeDescription
urlstring[]Public target URL.

Example Request

Use direct HTTP requests against the public API base URL.

Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/linkedin/person', {2  method: 'POST',3  headers: {4    'Authorization': 'Bearer YOUR_API_KEY',5    'Content-Type': 'application/json'6  },7  body: JSON.stringify({8    // Single URL or array of URLs (max 10)9    url: [10      'https://linkedin.com/in/satyanadella',11      'https://linkedin.com/in/billgates'12    ]13  })14});15 16const { data } = await response.json();17data.persons.forEach(({ url, person }) => {18  console.log(person.name, person.headline);19});

Response

Success (200 OK): Returns service-specific structured payload.

Success response (200 OK)
1{2  "success": true,3  "data": {4    "persons": [5      {6        "url": "https://linkedin.com/in/satyanadella",7        "person": {8          "name": "Satya Nadella",9          "headline": "Chairman and CEO at Microsoft",10          "location": "Redmond, Washington",11          "photoUrl": "https://...",12          "followers": 10500000,13          "connections": 500,14          "experience": [15            {16              "title": "Chairman and CEO",17              "company": "Microsoft",18              "startDate": "2014-02",19              "endDate": null20            }21          ],22          "education": [23            {24              "school": "The University of Chicago Booth School of Business",25              "degree": "MBA"26            }27          ],28          "skills": ["Leadership", "Cloud Computing", "AI"]29        }30      }31    ],32      "failed": [],33      "totalUrls": 2,34      "successCount": 2,35      "failedCount": 0,36      "timing": { "total": 18000 },37      "creditsUsed": 5,38      "creditsRemaining": 9539  }40}