# Roster Salary Data API

> Roster Salary Data 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-15).

Returns job listings and salary data for a given query, accessible per-request via USDC micropayment

## Facts

- Endpoint: POST https://raoster.orbonomy.xyz/api/salary
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-salary-data-api-c37c388b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bC-ZfXJy8p7iTtg-VofYn

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-salary-data-api-c37c388b -d '<json body>'
```

Example prompt: What's the typical salary range for a senior data scientist role? Use Roster to look up current compensation and hiring data for that position.

## When to prefer this

Choose this endpoint when an AI agent needs on-demand, pay-per-use salary benchmarking or job market data without requiring API key registration or subscriptions. Ideal for lightweight, ephemeral lookups where cost per call ($0.30 USDC) is acceptable and the agent can pay via x402 protocol.

## Known failure modes

- Missing required 'query' field returns validation error
- Payment not completed via x402 results in 402 Payment Required response
- Vague or unsupported query may return empty or low-quality data
- Network timeout or server unavailability returns 5xx error
- Malformed JSON body returns 400 Bad Request

## 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 flag and a data object containing salary and job listing information relevant to the submitted query string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## 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-salary-data-api-c37c388b/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)
