# Roster Job Search API

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

Search job listings and hiring data by query and location, payable per request in USDC via x402

## Facts

- Endpoint: POST https://r05t3r.vercel.app/api/jobs
- Price: $0.2/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-search-api-4ae77700
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u9P6qpB86R_UtCBfGyClJ

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-search-api-4ae77700 -d '<json body>'
```

Example prompt: Search Roster for software engineer jobs in San Francisco and show me what's available right now.

## When to prefer this

Choose this endpoint when you need on-demand job listing lookups without API key setup or subscription overhead — especially useful for AI agents that need to pay per query in USDC via x402 and want frictionless access to hiring data for any query/location pair.

## Known failure modes

- Payment failure if USDC balance is insufficient or x402 transaction is rejected
- Empty results if no jobs match the query/location combination
- Malformed request if query or location fields are missing or improperly formatted
- Service unavailability or timeout from the Vercel-hosted endpoint

## 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 information matching the query and location criteria, including details such as job titles, companies, and descriptions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  },
  "location": {
   "type": "string",
   "description": "location"
  }
 }
}
```

## 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-search-api-4ae77700/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)
