Indeed API

Indeed Jobs API

Search Indeed job listings by keyword, location, and country, with up to 20 normalized job records per request.

POST/v1/run/indeed.jobs
Uptime
100.00%
30d · 172 calls
Requests
175
30d · weekly, last 12 wks
Response
4.1s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "city": "San Francisco",
        "company": "Acme Inc",
        "country": "US",
        "datePublished": "2024-01-15T09:30:00Z",
        "description": "A short example description of this item.",
        "expired": true,
        "jobId": "a1b2c3d4",
        "postalCode": "94107",
        "salaryCurrency": "USD",
        "salaryMax": 19.99,
        "salaryMin": 19.99,
        "salaryUnit": "example",
        "state": "CA",
        "title": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface IndeedJobsResponse {
  data: {
    items: {
      city?: string;
      company?: string;
      country?: string;
      datePublished?: string;
      description?: string;
      expired?: boolean;
      jobId: string;
      postalCode?: string;
      salaryCurrency?: string;
      salaryMax?: number;
      salaryMin?: number;
      salaryUnit?: string;
      state?: string;
      title: string;
      url: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/indeed.jobs
curl -X POST https://api.getanyapi.com/v1/run/indeed.jobs \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":3,"location":"Austin, TX","query":"data analyst"}'
FieldTypeExample value
Request body
querystring"data analyst"Job search keywords (e.g. software engineer).
countrystringTwo-letter country site code (e.g. us, uk, de).
limitinteger3Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
locationstring"Austin, TX"City, state, zip, or 'remote'.
postedLimitenumOnly return jobs posted within this window: 24h (past day) or week (past 7 days). Omit for all dates.
Response
dataobject
data.itemsobject[]Job listing records: title, employer, location, salary when available, job type, posting date, and description. Populated whenever the provider has data for the entity.
data.items[].citystring
data.items[].companystringPopulated whenever the provider has data for the entity.
data.items[].countrystring
data.items[].datePublishedstringISO 8601 publish date.
data.items[].descriptionstringPlain-text job description.
data.items[].expiredboolean
data.items[].jobIdstringIndeed job key. Populated whenever the provider has data for the entity.
data.items[].postalCodestring
data.items[].salaryCurrencystring
data.items[].salaryMaxnumber
data.items[].salaryMinnumber
data.items[].salaryUnitstringSalary period, e.g. YEAR or HOUR.
data.items[].statestring
data.items[].titlestringPopulated whenever the provider has data for the entity.
data.items[].urlstringIndeed job posting URL. Populated whenever the provider has data for the entity.
foundboolean
Price
Price per request (ceiling)USD$0.00264
Price /1k resultsUSD$0.132

FAQ

About the Indeed Jobs API

The AnyAPI Indeed Jobs API returns Indeed jobs data as normalized JSON from one POST call to /v1/run/indeed.jobs. Search Indeed job listings by keyword, location, and country, with up to 20 normalized job records per request. AnyAPI returns one normalized schema whichever source serves it. It costs $0.13 per 1,000 results, and never more than $0.00264 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Indeed jobs calls through AnyAPI succeeded, with a median response time of 4.1 seconds across 172 measured calls.

It costs $0.13 per 1,000 results, and never more than $0.00264 for a single request, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Search Indeed job listings by keyword, location, and country, with up to 20 normalized job records per request. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Indeed jobs calls through AnyAPI succeeded, with a median response time of 4.1 seconds across 172 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.