Skip to main content
POST
/
api
/
linkedin
/
search
/
jobs
/linkedin/search/jobs
curl --request POST \
  --url https://api.anysite.io/api/linkedin/search/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "keywords": {
    "exact search": "\"back end\" developer",
    "example": "python"
  },
  "sort": "recent",
  "experience_level": [
    "internship",
    "associate",
    "mid_senior"
  ],
  "job_types": [
    "full_time",
    "contract"
  ],
  "work_types": [
    "hybrid",
    "remote"
  ],
  "industry": {
    "by keyword": "IT",
    "by urn": [
      "urn:li:industry:96"
    ]
  },
  "company": [
    "company:1035"
  ],
  "location": "Tokyo",
  "count": 123
}'
[
  {
    "@type": "LinkedinSearchJob",
    "urn": {
      "type": "<string>",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "company": {
      "@type": "LinkedinSearchJobCompany",
      "urn": {
        "type": "fsd_company",
        "value": "<string>"
      },
      "name": "<string>",
      "alias": "<string>",
      "url": "<string>"
    },
    "location": "<string>",
    "work_type": "on-site",
    "created_at": 123,
    "is_promoted": false,
    "is_east_apply": false
  }
]

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

Required range: 0 < x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keywords
string
default:""

Any keyword for searching in the job. For exact search put desired keywords into brackets

Examples:
{
"exact search": "\"back end\" developer",
"example": "python"
}
sort
enum<string> | null

Job sorting type

Available options:
recent,
relevant
Examples:

"recent"

experience_level
enum<string>[] | null

Job experience level

Examples:
["internship", "associate", "mid_senior"]
job_types
enum<string>[] | null

Job types

Examples:
["full_time", "contract"]
work_types
enum<string>[] | null

Work types

Examples:
["hybrid", "remote"]
industry

Industry URN, can be obtained in /linkedin/search/industries, only industry urn type is allowed

Examples:
{
"by keyword": "IT",
"by urn": ["urn:li:industry:96"]
}
company
LinkedinURN[Literal[<LinkedinURNPrefix.company: 'company'>]] · object[] | null

Company URN, can be obtained in /linkedin/search/company, only company urn type is allowed

Examples:
["company:1035"]
location
string
default:worldwide

Job location

Examples:

"Tokyo"

Response

Successful Response

urn
object
required
name
string
required
url
string
required
company
object
required
@type
string
default:LinkedinSearchJob
location
string | null
work_type
enum<string> | null
Available options:
on-site,
hybrid,
remote
created_at
integer | null
is_promoted
boolean
default:false
is_east_apply
boolean
default:false
I