Skip to main content
POST
/
api
/
indeed
/
jobs
/indeed/jobs
curl --request POST \
  --url https://api.anysite.io/api/indeed/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "title": "<string>",
    "url": "<string>",
    "@type": "@indeed_job",
    "description": "<string>",
    "description_text": "<string>",
    "company": {
      "@type": "@indeed_job_company",
      "name": "<string>",
      "alias": "<string>",
      "image": "<string>",
      "cover": "<string>",
      "profile_url": "<string>",
      "rating": 123,
      "review_count": 123
    },
    "location": {
      "@type": "@indeed_job_location",
      "city": "<string>",
      "state": "<string>",
      "country": "<string>",
      "postal_code": "<string>",
      "formatted": "<string>"
    },
    "salary": {
      "@type": "@indeed_job_salary",
      "salary_min": 123,
      "salary_max": 123,
      "currency": "<string>",
      "unit": "<string>",
      "text": "<string>",
      "source": "<string>"
    },
    "employment_types": [],
    "job_types": [],
    "benefits": [],
    "is_remote": true,
    "remote_work": {
      "@type": "@indeed_remote_work",
      "text": "<string>",
      "type": "<string>"
    },
    "direct_apply": true,
    "source": "<string>",
    "posted_age": "<string>",
    "posted_at": "<string>",
    "valid_through_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Indeed job key, or a job URL containing it

Minimum string length: 1
Examples:

"d9dfa39c301b0ebe"

"https://www.indeed.com/viewjob?jk=d9dfa39c301b0ebe"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
title
string
required
url
string
required
@type
string
default:@indeed_job
description
string | null
description_text
string | null
company
IndeedJobCompany · object
location
IndeedJobLocation · object
salary
IndeedJobSalary · object
employment_types
string[]
job_types
string[]
benefits
string[]
is_remote
boolean | null
remote_work
IndeedRemoteWork · object
direct_apply
boolean | null
source
string | null
posted_age
string | null
posted_at
string | null
valid_through_at
string | null