Skip to main content
POST
/
api
/
ziprecruiter
/
jobs
/
search
/ziprecruiter/jobs/search
curl --request POST \
  --url https://api.anysite.io/api/ziprecruiter/jobs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "search": "<string>",
  "count": 2,
  "timeout": 300,
  "location": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@ziprecruiter_job",
    "listing_key": "<string>",
    "title": "<string>",
    "company": {
      "@type": "@ziprecruiter_job_company",
      "name": "<string>",
      "alias": "<string>",
      "image": "<string>",
      "company_url": "<string>"
    },
    "location": {
      "@type": "@ziprecruiter_job_location",
      "display": "<string>",
      "city": "<string>",
      "state": "<string>",
      "state_code": "<string>",
      "county": "<string>",
      "country": "<string>",
      "country_code": "<string>",
      "postal_code": "<string>"
    },
    "salary": {
      "@type": "@ziprecruiter_job_salary",
      "salary_min": 123,
      "salary_max": 123,
      "period": "<string>",
      "currency": "<string>",
      "display": "<string>"
    },
    "employment_types": [],
    "location_types": [],
    "benefits": [],
    "snippet": "<string>",
    "posted_at": "<string>",
    "is_active": true,
    "job_url": "<string>",
    "apply_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json

Search keyword or job title

Minimum string length: 1
count
integer
required

Max number of jobs to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
location
string | null

Location as 'City, ST' (two-letter state), e.g. 'Austin, TX'

Response

Successful Response

id
string
required
@type
string
default:@ziprecruiter_job
listing_key
string | null
title
string | null
company
ZiprecruiterJobCompany · object
location
ZiprecruiterJobLocation · object
salary
ZiprecruiterJobSalary · object
employment_types
string[]
location_types
string[]
benefits
string[]
snippet
string | null
posted_at
string | null
is_active
boolean | null
job_url
string | null
apply_url
string | null