# Roster Job Match API

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

Matches a resume against job listings and returns relevant hiring data for AI agents, paid per request in USDC via x402

## Facts

- Endpoint: POST https://rost3r-v0.orbonomy.xyz/api/match
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-job-match-api-e4926bbb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-l4s99aK-P3Ec0hJFX3OM

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-api-e4926bbb -d '<json body>'
```

Example prompt: Can you find job listings that match my resume? Here it is: 'Experienced software engineer with 5 years in Python, AWS, and distributed systems, previously at mid-stage startups, seeking backend or platform engineering roles.'

## When to prefer this

Use this endpoint when you need to match a resume to live job listings without requiring account setup or subscriptions — ideal for AI agents that need lightweight, pay-per-use job matching via x402/USDC micropayments

## Known failure modes

- Missing required 'resume' field returns validation error
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Empty or malformed resume string may return zero matches or an error
- Service unavailability on rost3r-v0.orbonomy.xyz returns 5xx errors
- Overly short or generic resume text may yield low-quality or no matches

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing job matches and hiring information 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-api-e4926bbb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rost3r-v0.orbonomy.xyz](https://www.zero.xyz/host/rost3r-v0.orbonomy.xyz/llms.txt)
