# Roster Job Search API

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

Search job listings and hiring data by keyword query and location, returning structured job results

## Facts

- Endpoint: POST https://roster-phi-puce.vercel.app/api/jobs
- Price: $0.03/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-828bf42a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MxHySx9rApyqYgaycabrj

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

Example prompt: Can you search Roster for software engineering jobs in San Francisco? I'm looking for backend or full-stack roles.

## When to prefer this

Use this endpoint when an AI agent needs to retrieve job listings or hiring data programmatically without API keys or subscriptions. Best suited for pay-per-use workflows where the agent queries specific job categories and locations on demand via x402 micropayment protocol.

## Known failure modes

- Payment failure if USDC balance insufficient or x402 protocol error — returns 402 Payment Required
- Empty results if no jobs match the query/location combination
- Malformed request if query or location fields are missing or invalid — may return error response
- Rate limiting or service unavailability on the Vercel deployment

## 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 provided 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-828bf42a/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)
