# Coresignal Job Search Preview

> Coresignal Job Search Preview is a paid API for AI agents from stable-jobs-git-fix-stablejobs-default-recency-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 (step 1 of 2), returning paginated summaries of matching jobs including id, title, location, company name, date, and relevance score.

## Facts

- Endpoint: POST https://stable-jobs-git-fix-stablejobs-default-recency-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/coresignal-job-search-preview-59353164
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eOFEZLw5do7T4TfDIpJEj

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 coresignal-job-search-preview-59353164 -d '<json body>'
```

Example prompt: Search for the first page of software engineer jobs in Austin, Texas posted recently — I need the job IDs and company names so I can pull the full details next.

## When to prefer this

Use this endpoint as the mandatory first step before calling job-collect. It is ideal when you need to discover and filter job listings by keyword, location, or company, and want to retrieve a ranked, paginated list of job summaries to identify which records to fetch in full. Prefer this over direct job-collect when you don't yet have specific job IDs.

## Known failure modes

- Invalid or missing filter parameters return empty results or validation error
- Requesting page numbers beyond 5 is not supported
- No results found for overly narrow filter combinations
- Rate limiting or payment failure if USDC payment is not processed correctly
- Malformed POST body returns 400-level error

## 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 a paginated list (up to 20 per page, pages 1–5) of job summary objects each containing: job id, title, location, company_name, created date, and _score (relevance). Also includes pagination metadata and a next.collect reference to use when fetching full job records. Does NOT include job descriptions, salary information, or apply URLs — those require a subsequent job-collect call.

## 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/coresignal-job-search-preview-59353164/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-jobs-git-fix-stablejobs-default-recency-merit-systems.vercel.app](https://www.zero.xyz/host/stable-jobs-git-fix-stablejobs-default-recency-merit-systems.vercel.app/llms.txt)
