# Roster Job Listings API

> Roster Job Listings API is a paid API for AI agents from raoster.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Returns job listings and hiring data matching a specified role, skills, goals, and experience level, paid per request via x402/USDC.

## Facts

- Endpoint: POST https://raoster.orbonomy.xyz/api/career
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-job-listings-api-b625fabd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SDyKQ7w_hwIF1HKrE0Igf

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-listings-api-b625fabd -d '<json body>'
```

Example prompt: Search Roster for software engineer job listings that match someone with 3 years of Python and machine learning experience whose goals are to work on AI products at a mid-sized tech company.

## When to prefer this

Use this endpoint when an AI agent needs to find job listings or hiring market data for a specific role on a per-request, no-subscription basis using USDC micropayments via x402, particularly when the agent needs to match opportunities to a candidate's skills, goals, and experience without setting up API keys or subscriptions.

## Known failure modes

- Missing required 'role' field returns a validation error
- Payment not provided or insufficient USDC causes a 402 Payment Required response
- Unknown or unsupported role strings may return empty data
- Malformed JSON body causes a 400 Bad Request
- Service unavailability returns a 5xx 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 relevant to the specified role, skills, goals, and experience level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "role"
 ],
 "properties": {
  "role": {
   "type": "string"
  },
  "goals": {
   "type": "string"
  },
  "skills": {
   "type": "string"
  },
  "experience": {
   "type": "string"
  }
 }
}
```

## 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-listings-api-b625fabd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from raoster.orbonomy.xyz](https://www.zero.xyz/host/raoster.orbonomy.xyz/llms.txt)
