# Indeed Jobs

Extract Indeed job listings — title, company, salary, location, skills, hiring-demand signals, and apply links — by keyword + location, or by specific Indeed job ID

**Pricing:** $0.06 / 1k jobs

**Endpoint:** `POST /api/v1/agents/indeed/jobs/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `keyword` | string | No | Job title or search keywords (e.g. "warehouse associate"). |
| `location` | string | No | City, state, or region (e.g. "Houston, TX"). |
| `country` | string | No | Indeed country domain to search. (United Kingdom may be unreliable upstream.) |
| `remote` | string | No | Set to "remote" to return only remote roles. |
| `jobType` | string | No | Filter by employment type (e.g. "fulltime", "parttime", "contract"). |
| `fromDays` | integer | No | Only return jobs posted within this many days (e.g. 7). |
| `sort` | string | No | Result ordering (e.g. "date" for most recent first). |
| `jobKeys` | array | No | Specific Indeed job IDs to look up directly. One per line. |
| `maxItems` | integer | No | Maximum job listings to return. |

## Example

```bash
curl -X POST https://api.mindcase.co/api/v1/agents/indeed/jobs/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/api/v1/agents/indeed/jobs/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/api/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, endpoints): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `jobId` | Job ID | text |
| `jobUrl` | Job URL | url |
| `applyUrl` | Apply URL | url |
| `jobTitle` | Job Title | text |
| `normalizedTitle` | Normalized Title | text |
| `companyName` | Company Name | text |
| `companyUrl` | Company URL | url |
| `companyWebsite` | Company Website | url |
| `companyLogo` | Company Logo | url |
| `industry` | Industry | text |
| `sectors` | Sectors | array |
| `companySize` | Company Size | text |
| `companyRevenue` | Company Revenue | text |
| `companyRating` | Company Rating | number |
| `companyReviews` | Company Reviews | integer |
| `city` | City | text |
| `state` | State | text |
| `country` | Country | text |
| `postalCode` | Postal Code | text |
| `fullAddress` | Full Address | text |
| `latitude` | Latitude | number |
| `longitude` | Longitude | number |
| `salaryMin` | Salary Min | currency |
| `salaryMax` | Salary Max | currency |
| `salaryCurrency` | Salary Currency | text |
| `salaryPeriod` | Salary Period | text |
| `workplaceType` | Workplace Type | text |
| `employmentType` | Employment Type | array |
| `workSetting` | Work Setting | array |
| `educationLevel` | Education Level | text |
| `experienceLevel` | Experience Level | text |
| `certifications` | Certifications | array |
| `skills` | Skills | array |
| `occupation` | Occupation | text |
| `applyStarts` | Apply Starts | integer |
| `numberOfHires` | Number of Hires | integer |
| `employerResponsive` | Employer Responsive | boolean |
| `urgentHire` | Urgent Hire | boolean |
| `highVolumeHiring` | High Volume Hiring | boolean |
| `sponsored` | Sponsored | boolean |
| `posted` | Posted | text |
| `jobDescription` | Job Description | text |
| `benefits` | Benefits | array |
| `sourceType` | Source Type | text |
| `sourceName` | Source Name | text |
| `language` | Language | text |
| `shift` | Shift | array |
| `travel` | Travel | array |
| `salaryText` | Salary Text | text |
| `ceo` | CEO | text |
