# Coresignal Job Search Preview (via x402.orthogonal.com)

> Coresignal Job Search Preview (via x402.orthogonal.com) is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.021/call, status unknown (last checked 2026-09-14).

Searches and previews job listings using filters like title, location, company domain, and employment type, returning summary fields including job ID, title, location, company name, posting date, and relevance score.

## Facts

- Endpoint: POST https://x402.orthogonal.com/coresignal/v2/job_base/search/filter/preview
- Price: $0.021/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coresignal-job-search-preview-via-x402-orthogonal-com-86d0d5b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bncRNMkmGqPH0StCo4s1G

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-via-x402-orthogonal-com-86d0d5b0 -d '<json body>'
```

Example prompt: Search for full-time Software Engineer jobs in San Francisco, CA posted after 2025-01-01 and give me a preview list with job IDs, company names, and relevance scores so I can dig into the best matches.

## When to prefer this

Use this endpoint when you need a fast, lightweight preview of job listings matching specific criteria before committing to fetching full job details. It is ideal for filtering, ranking, and shortlisting jobs at scale without incurring the cost of full-detail lookups. Prefer it over the full 'Base Jobs Collect' endpoint when you only need summary fields for initial discovery or routing decisions.

## Known failure modes

- Empty results if filters are too narrow or no matching jobs exist
- Invalid date format for created_at_gte causes a 400 error
- Unrecognized employment_type value may return no results or an error
- Invalid or nonexistent company_domain may yield no results
- Payment failure (insufficient USDC balance) blocks the request at the x402 layer

## How this service works

Preview job search results with summary data. Pass filters in the request body. Returns matching jobs with key fields: id, title, location, company_name, posting date, and relevance score. Use the 'id' field with the 'Base Jobs Collect' endpoint to get full job details.

## Output

Returns a list of matching job postings in preview format, each containing: job ID (for use with a full-detail endpoint), job title, location, company name, posting date, and a relevance score indicating how well the job matches the search filters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string",
   "description": "Job title to search for (e.g., 'Software Engineer', 'Product Manager')"
  },
  "country": {
   "type": "string",
   "description": "Country name (e.g., 'United States')"
  },
  "location": {
   "type": "string",
   "description": "Job location (e.g., 'San Francisco, CA', 'Remote')"
  },
  "company_domain": {
   "type": "string",
   "description": "Company website domain (e.g., 'google.com')"
  },
  "created_at_gte": {
   "type": "string",
   "description": "Jobs created on or after this date, format YYYY-MM-DD (e.g., '2025-01-01')"
  },
  "employment_type": {
   "type": "string",
   "description": "Employment type: 'Full-time', 'Part-time', 'Contract', 'Temporary', 'Internship'"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coresignal-job-search-preview-via-x402-orthogonal-com-86d0d5b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
