# Roster Job Search API

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

Searches job listings and returns hiring data based on a keyword query and optional location filter, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/jobs
- Price: $0.2/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-search-api-82fcb6a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gn9OpAn6YncmzLYCvZ9Fh

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

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

## When to prefer this

Choose this endpoint when an agent needs to search job listings without setting up subscriptions or API keys — it's a pay-per-request model via x402/USDC, making it ideal for on-demand or low-frequency job search tasks in agentic workflows where provisioning credentials is impractical.

## Known failure modes

- Payment not included or insufficient USDC — 402 Payment Required response
- Missing or malformed query field — may return empty results or error
- Invalid location string — may return no results or broad matches
- Service unavailable on Netlify hosting — 503 or timeout
- Empty result set if no jobs match the query/location combination

## 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 JSON object with a success boolean and a data object containing job listings and hiring data matching the query and location criteria.

## 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-82fcb6a6/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)
