# Roster Job Match

> Roster Job Match is a paid API for AI agents from r05t3r.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-14).

Matches a resume against job listings and returns relevant hiring data for the candidate

## Facts

- Endpoint: POST https://r05t3r.vercel.app/api/match
- Price: $0.3/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-25726515
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_akXyFwvPbGHNGzdTTNBq-

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

Example prompt: Here's my resume — can you run it through Roster and find me job listings that actually match my background? I want to see which positions and companies I'd be a good fit for.

## When to prefer this

Choose this endpoint when you need to match a specific resume against live job listings without requiring API keys or subscriptions, and when you can pay per request in USDC via x402. Ideal for AI agents performing one-off or automated job-matching tasks on behalf of users without needing to manage authentication credentials.

## Known failure modes

- Missing or empty resume field returns a validation error
- Malformed resume text may return low-quality or empty matches
- Payment failure via x402 (insufficient USDC balance) results in a 402 Payment Required response
- Service unavailability on Vercel deployment may cause 500 errors
- Extremely short or unformatted resume may return 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

A JSON object containing a success flag and a data object with matched job listings and hiring data relevant to the submitted resume, such as role titles, companies, and match signals.

## 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-25726515/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from r05t3r.vercel.app](https://www.zero.xyz/host/r05t3r.vercel.app/llms.txt)
