scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTPost
  • POSTJobs
  • POSTJob Detail

LinkedIn Job Detail

1 credit

Get one public LinkedIn job by ID or URL.

POST/api/v1/tools/linkedin/job-detail

Parameters

jobIdstring

Numeric LinkedIn job ID with up to 32 digits. Provide this or jobUrl.

jobUrlstring

Public HTTPS linkedin.com/jobs/view URL. Provide this or jobId.

Response Schema

dataobject

LinkedIn job detail result

jobobject

Full public job record

scrapedAtstring

ISO 8601 scrape time

metaobject

Request metadata

toolstring

Tool name (linkedin-job-detail)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/linkedin/job-detail \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"jobId": "4447655287"
}'

Response Example

{
"data": {
"job": {
"jobId": "4447655287",
"jobUrl": "https://www.linkedin.com/jobs/view/staff-engineer-at-example-4447655287",
"title": "Staff Engineer",
"company": "Example",
"companyId": "1441",
"location": "Stockholm",
"description": "Build reliable systems.",
"experienceLevel": "Mid-Senior level",
"employmentType": "Full-time",
"applicationMethod": "external"
},
"scrapedAt": "2026-08-14T10:00:00.000Z"
},
"meta": {
"tool": "linkedin-job-detail",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}