# Roster Salary Data Lookup

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

Retrieves salary and compensation data for jobs based on a natural language query, paid per-request via USDC x402 protocol

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/salary
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-salary-data-lookup-9ed9e27d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xvMqy-ypgWaE4nhbvy6Rf

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-lookup-9ed9e27d -d '<json body>'
```

Example prompt: What's the typical salary range for a senior data engineer in the US right now? Use Roster to pull current compensation benchmarks for that role.

## When to prefer this

Choose this endpoint when an AI agent needs real-time salary or compensation benchmarks without managing API keys or subscriptions — it requires only a USDC micropayment per call via x402, making it ideal for pay-as-you-go agent workflows focused on job market data.

## Known failure modes

- Missing or empty query field returns validation error
- Payment not completed results in 402 Payment Required response
- Ambiguous or unrecognized query may return empty or low-confidence data
- Network timeout if the backend data source is slow
- Insufficient USDC balance causes payment failure and no data returned

## 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 salary and compensation information relevant to the queried job role or market segment.

## 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-lookup-9ed9e27d/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)
