# PredictLeads Job Openings by Company

> PredictLeads Job Openings by Company 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).

Retrieves paginated job openings for a specific company (e.g. stripe.com) with filtering by category, date, location, and status

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/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-by-company-3fbc4466
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ivUz7yJiDv_k9yGe4AHbI

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-by-company-3fbc4466
```

Example prompt: Can you pull all the active engineering job openings at stripe.com right now, showing only ones with location info and job descriptions included?

## When to prefer this

Use this endpoint when you need structured, paginated job posting data for a specific company identified by domain name. Ideal for competitive intelligence, sales prospecting based on hiring signals, investor due diligence, or tracking headcount growth by department. Prefer this over generic job search APIs when you have a specific company domain and need reliable, deduplicated, historically-tracked job data from PredictLeads. The pagination billing model makes it cost-efficient for large result sets.

## Known failure modes

- Company domain not found or not tracked — returns empty results
- Invalid date format for date range filters — returns validation error
- Changing filter parameters on a paginated continuation invalidates parentRequestId billing continuity
- Rate limits or payment failure via x402 protocol — returns 402 Payment Required
- Invalid category string — may return empty results or error

## How this service works

Get job openings for a specific company 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 for the specified company domain, each including job title, category, first and last seen dates, location (if available), description (if available), and open/closed status. Includes billing metadata with a requestId that can be used as parentRequestId for subsequent pages at no additional charge.

## 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"
      },
      "categories": {
       "type": "string"
      },
      "not_closed": {
       "type": "boolean"
      },
      "active_only": {
       "type": "boolean"
      },
      "last_seen_at_from": {
       "type": "string"
      },
      "first_seen_at_from": {
       "type": "string"
      },
      "last_seen_at_until": {
       "type": "string"
      },
      "with_location_only": {
       "type": "boolean"
      },
      "first_seen_at_until": {
       "type": "string"
      },
      "with_description_only": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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