# PredictLeads Job Openings Discovery

> PredictLeads Job Openings Discovery is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Search and filter job openings across companies by location or O*NET occupation code, with paginated results

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/discover/job_openings
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predictleads-job-openings-discovery-37e8ce74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zxWzJQNzG-2OkohR7G7Bp

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 predictleads-job-openings-discovery-37e8ce74
```

Example prompt: Search for job openings in Austin, Texas — show me the first page of results and let me know how many are available.

## When to prefer this

Use this endpoint when you need to discover job openings at scale across companies, filtered by geographic location or standardized O*NET occupation codes. Prefer this over general web scraping when structured, paginated job data is needed. The pagination billing model makes it cost-effective for multi-page searches since only the first page of each unique search is billed.

## Known failure modes

- Missing both location and onet_codes — at least one is required
- Invalid O*NET code format returns no results or an error
- Changing filter parameters on a continuation call starts a new billable request instead of continuing the prior search
- Rate limiting or quota exhaustion at $0.04 per call
- Invalid page or limit values causing empty or malformed responses

## How this service works

Search and filter job openings across all companies Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of job openings filtered by location or O*NET occupation code, including job details and company information. Subsequent pages of the same search use a parentRequestId for zero-cost continuation calls.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "page": {
       "type": "integer",
       "description": "For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "limit": {
       "type": "integer"
      },
      "location": {
       "type": "string",
       "description": "Location (required if onet_codes not provided)"
      },
      "onet_codes": {
       "type": "string",
       "description": "O*NET code (required if location not provided)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predictleads-job-openings-discovery-37e8ce74/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)
