LinkedIn Profile Posted Jobs API
Scrape LinkedIn Profile Posted Jobs data with one API call. Returns the jobs a member is listed as having posted, as a canonical JobList: `job.id`, `title`, `url`, `location`, `listed_at`, and the hiring `company`. Pass the same profile URL `/v1/linkedin/profile` takes. A member with no posted jobs answers an empty list.
Last updated September 2026Maintained by the SocialCrawl team
Returns the jobs a LinkedIn member has posted, each with job id, title, hiring company, location, and posting date.
Use it when you have a person's profile URL and want the roles they listed, not every opening at their employer.
Searching 65 platforms in parallel
What can you do with the Profile Posted Jobs API?
The Profile Posted Jobs endpoint gives you structured LinkedIn data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/linkedin/profile/posted-jobs?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fjipeng-han%2F"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/linkedin/profile/posted-jobs",
params={
'url': 'https://www.linkedin.com/in/jipeng-han/',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/linkedin/profile/posted-jobs?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fjipeng-han%2F",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| url | Yes | Full URL of the LinkedIn profile whose posted jobs to list. |
How does the LinkedIn Profile Posted Jobs API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Ready to scrape LinkedIn Profile Posted Jobs data?
Get your API key and start pulling LinkedIn data in under 60 seconds.
