Skip to main content
POST
/
api
/
indeed
/
salaries
/indeed/salaries
curl --request POST \
  --url https://api.anysite.io/api/indeed/salaries \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "title": "<string>",
  "timeout": 300
}
'
[
  {
    "title": "<string>",
    "url": "<string>",
    "@type": "@indeed_salary",
    "location": "<string>",
    "currency": "<string>",
    "display_period": "<string>",
    "description": "<string>",
    "salaries": [],
    "top_paying_companies": [],
    "top_paid_cities": [],
    "related_titles": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
title
string
required

Job title to look up salary data for, or a career-page URL containing it

Minimum string length: 1
Examples:

"software engineer"

"https://www.indeed.com/career/software-engineer/salaries"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

title
string
required
url
string
required
@type
string
default:@indeed_salary
location
string | null
currency
string | null
display_period
string | null
description
string | null
salaries
IndeedSalaryStat · object[]
top_paying_companies
IndeedTopCompany · object[]
top_paid_cities
IndeedTopCity · object[]