# Roster Job Match

> Roster Job Match is a paid API for AI agents from roster.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Matches a resume against job listings to return relevant hiring opportunities, paid per request in USDC via x402

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/match
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-job-match-2a58f3a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C8umn5NSyVYzLLrgsiIqn

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 roster-job-match-2a58f3a8 -d '<json body>'
```

Example prompt: Find me job listings that match my resume — here it is: 'Software engineer with 5 years of experience in Python, distributed systems, and cloud infrastructure at early-stage startups, with a background in ML pipeline tooling.'

## When to prefer this

Use this endpoint when an AI agent needs to find job listings or hiring opportunities that match a specific candidate's resume, especially in a pay-per-use workflow without subscription overhead. Prefer this over general job search APIs when you want resume-to-job matching rather than keyword-based search.

## Known failure modes

- Missing required 'resume' field returns a 400 or validation error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Empty or malformed resume string may return empty or low-quality matches
- Service unavailable returns 5xx with no match data

## How this service works

Job listings and hiring data for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

A JSON object with a success boolean and a data object containing matched job listings and hiring data relevant to the submitted resume

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "resume"
 ],
 "properties": {
  "resume": {
   "type": "string",
   "description": "resume"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/roster-job-match-2a58f3a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster.orbonomy.xyz](https://www.zero.xyz/host/roster.orbonomy.xyz/llms.txt)
