Indeed Jobs API
Search Indeed job listings by keyword, location, and country, with up to 20 normalized job records per request.
Try it
Make your first request
{
"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
}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 30dcurl -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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "data analyst"Job search keywords (e.g. software engineer). |
| country | string | Two-letter country site code (e.g. us, uk, de). |
| limit | integer | 3Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less. |
| location | string | "Austin, TX"City, state, zip, or 'remote'. |
| postedLimit | enum | Only return jobs posted within this window: 24h (past day) or week (past 7 days). Omit for all dates. |
| Response | ||
| data | object | |
| data.items | object[] | 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[].city | string | |
| data.items[].company | string | Populated whenever the provider has data for the entity. |
| data.items[].country | string | |
| data.items[].datePublished | string | ISO 8601 publish date. |
| data.items[].description | string | Plain-text job description. |
| data.items[].expired | boolean | |
| data.items[].jobId | string | Indeed job key. Populated whenever the provider has data for the entity. |
| data.items[].postalCode | string | |
| data.items[].salaryCurrency | string | |
| data.items[].salaryMax | number | |
| data.items[].salaryMin | number | |
| data.items[].salaryUnit | string | Salary period, e.g. YEAR or HOUR. |
| data.items[].state | string | |
| data.items[].title | string | Populated whenever the provider has data for the entity. |
| data.items[].url | string | Indeed job posting URL. Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request (ceiling) | USD | $0.00264 |
| Price /1k results | USD | $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.