# Roster Job Match

> Roster Job Match is a paid API for AI agents from rasoster.netlify.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 opportunities

## Facts

- Endpoint: POST https://rasoster.netlify.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-50fa6d99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7v65AoQs2IHb03p0x7X0A

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-50fa6d99 -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, AWS, and distributed systems, previously at Stripe and Google, looking for senior backend roles.'

## When to prefer this

Choose this endpoint when you need pay-per-request job matching without subscription overhead, especially in agentic workflows where you want to match a resume to open positions on demand and pay in USDC via x402.

## Known failure modes

- Missing resume field returns validation error
- Empty or malformed resume string may yield zero matches
- Payment failure via x402 returns 402 Payment Required
- Poorly formatted resume text may produce low-quality matches
- Service unavailability on Netlify hosting may return 5xx errors

## 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 boolean and a data object containing job listings or matches relevant to the submitted resume, sourced from Roster's hiring dataset.

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