# Indeed Scraper (misceres/indeed-scraper) via StableApify

> Indeed Scraper (misceres/indeed-scraper) via StableApify is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Starts an Apify actor run that scrapes job listings from Indeed, returning detailed job data including saved and sponsored jobs filtered by search term and location.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/misceres/indeed-scraper/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/indeed-scraper-misceres-indeed-scraper-via-stableapify-80572361
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ez1KNsDyRML0IDVRh8-pN

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability indeed-scraper-misceres-indeed-scraper-via-stableapify-80572361 -d '<json body>'
```

Example prompt: Scrape Indeed for software engineer jobs in Austin, Texas — pull up to 200 listings including sponsored jobs and give me the full details like title, company, salary, and description.

## When to prefer this

Choose this endpoint when you need structured job listing data from Indeed at scale, including sponsored and saved jobs, with location-based filtering. Prefer this over LinkedIn Jobs Scraper when your focus is Indeed-specific listings. Use this over the valig/indeed-jobs-scraper sibling when you need the misceres actor's specific output format or feature set. Best for bulk data collection, job market analysis, and recruitment pipeline automation.

## Known failure modes

- Invalid or missing search parameters causing empty results
- Indeed anti-scraping measures blocking the actor mid-run
- Actor run failing to start due to insufficient memory allocation
- Rate limits or quota exceeded on the Apify platform
- Token expiry before dataset is fetched (token valid ~30 days)
- maxItems set too high leading to long run times or timeouts

## How this service works

Start the "Indeed Scraper" Apify actor (misceres/indeed-scraper). Scrape jobs posted on Indeed. Get detailed information from this job portal about saved and sponsored jobs. Specify the search based on location with the outpu…

## Output

Returns an actor run object with a run ID, status (READY), actor ID, start timestamp, default dataset ID, and a bearer token. The bearer token and dataset ID are used in a subsequent call to fetch the actual scraped job listings from the Apify dataset.

## Example request

```json
{
 "input": {
  "username": "john-smith",
  "includeEmail": false
 },
 "options": {
  "memory": 256,
  "maxItems": 100
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "country",
    "parseCompanyDetails",
    "saveOnlyUniqueItems",
    "followApplyRedirects"
   ],
   "properties": {
    "country": {
     "enum": [
      "AQ",
      "AR",
      "AU",
      "AT",
      "BH",
      "BE",
      "BR",
      "CA",
      "CL",
      "CN",
      "CO",
      "CR",
      "CZ",
      "DK",
      "EC",
      "EG",
      "FI",
      "FR",
      "DE",
      "GR",
      "HK",
      "HU",
      "IN",
      "ID",
      "IE",
      "IL",
      "IT",
      "JP",
      "KW",
      "LU",
      "MX",
      "MA",
      "NL",
      "NZ",
      "NG",
      "NO",
      "OM",
      "PK",
      "PA",
      "PE",
      "PH",
      "PL",
      "PT",
      "QA",
      "RO",
      "SA",
      "SG",
      "ZA",
      "KR",
      "ES",
      "SE",
      "CH",
      "TW",
      "TH",
      "TR",
      "UA",
      "AE",
      "GB",
      "US",
      "UY",
      "VE",
      "VN"
     ],
     "type": "string",
     "default": "US",
     "description": "Country for job search."
    },
    "location": {
     "type": "string",
     "description": "Any combination of city, zip code or locality for search. Used together with position/keywords."
    },
    "position": {
     "type": "string",
     "description": "Any combination of positions or keywords for search. Can be used together with Start URLs - both will be scraped independently, each limited by Max job listings per search."
    },
    "startUrls": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "url"
      ],
      "properties": {
       "url": {
        "type": "string",
        "format": "uri"
       },
       "method": {
        "type": "string"
       },
       "headers": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {
         "type": "string"
        }
       },
       "payload": {
        "type": "string"
       },
       "userData": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "additionalProperties": false
     },
     "description": "List of URLs that will be scraped. Can be main website URL, category/search URLs, company jobs URL (in the format of `https://www.indeed.com/cmp/Google/jobs`) or detail/product URLs. Can be combined with keyword search - both will execute independentl
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/indeed-scraper-misceres-indeed-scraper-via-stableapify-80572361/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
