# Roster Job Match API

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

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

## Facts

- Endpoint: POST https://raoster.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-24e07433
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FBYRomkI1KNY5Fm__lBBi

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-24e07433 -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, previously at mid-stage startups, looking for senior IC or tech lead roles.'

## When to prefer this

Use this endpoint when an AI agent needs to match a user's resume or professional background against live job listings without setting up subscriptions or API keys — particularly suitable for pay-per-use agent workflows that use x402 USDC micropayments.

## Known failure modes

- Missing required 'resume' field returns an error
- Empty or very short resume string may yield no matches or poor quality results
- Malformed JSON body causes request rejection
- Service unavailability or payment failure via x402 prevents response
- Overly generic resume text may return low-relevance 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 success flag and a data object containing job listings and hiring opportunities matched to the submitted resume, ranked or filtered by relevance.

## 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-24e07433/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from raoster.orbonomy.xyz](https://www.zero.xyz/host/raoster.orbonomy.xyz/llms.txt)
