# Roster Job Search API

> Roster Job Search API is a paid API for AI agents from roster.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Searches job listings and hiring data by query keyword and location, returning matching job results

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/jobs
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-job-search-api-d2d5d288
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZEshg3pWDIDB88ZzSPX0M

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

Example prompt: Find me software engineering job listings in San Francisco using Roster.

## When to prefer this

Choose this endpoint when you need pay-per-request access to job listings and hiring data without subscriptions or API keys — ideal for AI agents that only occasionally need job search data and want to pay micro-amounts in USDC via x402 rather than maintain a recurring subscription.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- Missing or malformed query/location parameters — returns 400 Bad Request
- No matching jobs found for given query and location — success true but empty data
- Service unavailable or upstream data source down — returns 500 error

## How this service works

Job listings and hiring data for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

A JSON object with a success boolean and a data object containing job listings and hiring information 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-d2d5d288/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster.orbonomy.xyz](https://www.zero.xyz/host/roster.orbonomy.xyz/llms.txt)
