# Stable Jobs Job Search Preview

> Stable Jobs Job Search Preview is a paid API for AI agents from stable-jobs-git-fix-stablejobs-location-guidance-merit-systems.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Searches and previews job listings by filters (location, title, company, etc.) returning paginated summaries before fetching full records.

## Facts

- Endpoint: POST https://stable-jobs-git-fix-stablejobs-location-guidance-merit-systems.vercel.app/api/coresignal/job-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stable-jobs-job-search-preview-efdf2f1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pLoMZMfhbziYJPMyHOUeQ

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 stable-jobs-job-search-preview-efdf2f1b -d '<json body>'
```

Example prompt: Search for software engineer jobs in Austin, Texas and show me the first page of results — I want to browse the titles and companies before pulling the full details.

## When to prefer this

Use this endpoint as the first step in a two-step job search workflow: call job-search to preview and filter matching jobs, then call job-collect with the returned IDs for full records including descriptions, salary, and URLs. Prefer this over job-collect when you need to paginate through results or identify which jobs to fetch in detail. Best when you need fast, low-cost filtering before committing to full record retrieval.

## Known failure modes

- Invalid or missing filter parameters return an error or empty result set
- Page number out of range (>5) returns an error or no results
- Rate limiting or payment failure (x402) blocks the request
- Overly broad filters may return low-relevance results with high _score variance
- CoreSignal data lag may mean very recently posted jobs are not indexed yet

## How this service works

Preview jobs by filters (step 1). Call before job-collect. Page 1–5, 20/page, $0.10/page. Returns id, title, location, company_name, created, _score; pagination; next.collect when results exist. No description, salary, or URLs — use job-collect for full records.

## Output

Returns up to 20 job listing summaries per page (pages 1–5) including job id, title, location, company name, creation date, and relevance score. Also includes pagination metadata and a next.collect pointer to use when fetching full job records. Does not include job descriptions, salary, or apply URLs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-jobs-job-search-preview-efdf2f1b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-jobs-git-fix-stablejobs-location-guidance-merit-systems.vercel.app](https://www.zero.xyz/host/stable-jobs-git-fix-stablejobs-location-guidance-merit-systems.vercel.app/llms.txt)
