# relay402 Company Jobs Lookup

> relay402 Company Jobs Lookup is a paid API for AI agents from relay402.georgespring.workers.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Fetches open job listings for a given company by crawling its careers page, payable per-call in USDC with no API key required.

## Facts

- Endpoint: GET https://relay402.georgespring.workers.dev/api/company-jobs
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relay402-company-jobs-lookup-aac54498
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-MuLIgjBBtkzukITJAGP3

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 relay402-company-jobs-lookup-aac54498
```

Example prompt: Can you pull the current job openings at Stripe from their careers page at https://stripe.com/jobs? I want to see what roles they're actively hiring for right now.

## When to prefer this

Choose this endpoint when you need real-time job listing data directly from a company's own careers page without signing up for a job board, and when you want pay-per-call pricing with no API key overhead. Especially useful for AI agents that need on-demand hiring signals for a specific company rather than broad job board searches.

## Known failure modes

- Careers URL is invalid or unreachable — returns an error or empty result
- Company name does not match a known careers page — may return no results
- Careers page uses heavy JavaScript rendering that cannot be crawled — returns partial or empty listings
- Payment not attached or insufficient USDC — returns HTTP 402 Payment Required
- Rate limiting or bot protection on the careers site — crawl blocked

## How this service works

Current job openings for a given company: titles, locations, departments, posting dates, application URLs. Sourced from the company's official careers system (Greenhouse). Input: company board token (e.g. 'anthropic').

## Output

A list of current job openings at the specified company, typically including job title, department, location, and a link to each listing, extracted from the company's careers page.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "company": {
       "type": "string",
       "minLength": 2
      },
      "careers_url": {
       "type": "string",
       "format": "uri"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relay402-company-jobs-lookup-aac54498/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from relay402.georgespring.workers.dev](https://www.zero.xyz/host/relay402.georgespring.workers.dev/llms.txt)
