# Roster Job Match

> Roster Job Match is a paid API for AI agents from roster-phi-puce.vercel.app, 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 opportunities, paid per request in USDC via x402

## Facts

- Endpoint: POST https://roster-phi-puce.vercel.app/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-a503945c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bw7rbIlEwVNdflmf3lJ-Q

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

Example prompt: Can you find job listings that match my resume? Here it is: 'Software engineer with 5 years of experience in Python, distributed systems, and cloud infrastructure at mid-size startups, previously at Google as an SRE.'

## When to prefer this

Use this endpoint when an AI agent needs to match a user's resume against live job listings without requiring OAuth or subscriptions — ideal for pay-per-use agentic workflows where the agent pays $0.05 USDC per call via x402 protocol.

## Known failure modes

- Missing resume field returns validation error
- Empty or very short resume may return no matches or low-quality results
- Payment failure via x402 returns 402 Payment Required
- Malformed JSON body returns 400 error
- Service downtime on Vercel returns 503

## 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 or hiring opportunities that match the submitted resume, including relevant roles and potentially match scores or company information.

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