POST
/
search-jobs
curl --request POST \
  --url https://fresh-linkedin-profile-data.p.rapidapi.com/search-jobs \
  --header 'Content-Type: application/json' \
  --header 'x-rapidapi-key: <api-key>' \
  --data '{
  "keywords": "marketing",
  "geo_code": 92000000,
  "date_posted": "Any time",
  "experience_levels": [
    "Internship",
    "Entry level"
  ],
  "company_ids": [
    1035
  ],
  "title_ids": [],
  "onsite_remotes": [
    "Remote",
    "Hybrid"
  ],
  "functions": [
    "Marketing",
    "Sales"
  ],
  "industries": [],
  "job_types": [
    "Full-time",
    "Internship"
  ],
  "sort_by": "",
  "easy_apply": "false",
  "under_10_applicants": "false",
  "start": 0
}'
{
  "data": [
    {
      "company": "Microsoft",
      "company_linkedin_url": "https://www.linkedin.com/company/microsoft",
      "company_logo": "https://media.licdn.com/dms/image/v2/C560BAQE88xCsONDULQ/company-logo.png",
      "job_title": "Marketing: MBA Internship Opportunities",
      "job_url": "https://www.linkedin.com/jobs/view/4052310093",
      "job_urn": "4052310093",
      "location": "Redmond, WA",
      "posted_time": "2024-11-29 10:43:18",
      "remote": "Hybrid",
      "salary": "$11.2K/yr - $12.2K/yr"
    }
  ],
  "message": "ok",
  "total": 495
}

Authorizations

x-rapidapi-key
string
header
required

Body

application/json
keywords
string

Keywords to search for jobs.

Example:

"marketing"

geo_code
integer

Geographical code for filtering jobs.

Example:

92000000

date_posted
enum<string>

Filter jobs by date posted. Acceptable values include predefined date ranges.

Available options:
Any time,
Past month,
Past week,
Past 24 hours
Example:

"Any time"

experience_levels
enum<string>[]

Filter jobs by experience levels. Acceptable values include predefined experience levels.

Available options:
Internship,
Associate,
Director,
Entry level,
Mid-Senior level,
Executive
Example:
["Internship", "Entry level"]
company_ids
integer[]

Learn how to find a company_id.

Example:
[1035]
title_ids
string[]

Filter jobs by specific title IDs.

Example:
[]
onsite_remotes
enum<string>[]
Available options:
On-site,
Remote,
Hybrid
Example:
["Remote", "Hybrid"]
functions
enum<string>[]
Available options:
Marketing,
Sales,
Business Development,
Other,
Strategy/Planning,
Writing/Editing,
Public Relations,
Information Technology,
Art/Creative,
Administrative,
Advertising
Example:
["Marketing", "Sales"]
industries
string[]

Filter jobs by industries.

Example:
[]
job_types
enum<string>[]
Available options:
Full-time,
Part-time,
Contract,
Temporary,
Internship,
Other
Example:
["Full-time", "Internship"]
sort_by
enum<string>
Available options:
Most recent,
Most relevant
Example:

""

easy_apply
enum<string>
Available options:
true,
false
Example:

"false"

under_10_applicants
enum<string>

Filter jobs with less than 10 applicants. Acceptable values are 'true' or 'false'.

Available options:
true,
false
Example:

"false"

start
integer

Pagination start index.

Example:

0

Response

200
application/json
Success.
data
object[]
message
string
Example:

"ok"

total
integer
Example:

495