# Roster Salary Lookup

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

Query job salary data and compensation benchmarks for a given role, skill, or market segment

## Facts

- Endpoint: POST https://rost3r-v0.orbonomy.xyz/api/salary
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-salary-lookup-b2e69af9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_83pDOwNt63IhCGxwniFIv

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

Example prompt: What's the typical salary range for a senior machine learning engineer right now? Query Roster's salary endpoint with that role.

## When to prefer this

Use this endpoint when an agent needs quick, pay-per-request salary or compensation benchmarks without committing to a subscription. Ideal for one-off lookups of job role pay ranges, market rate checks, or hiring budget planning. Best when the agent can pay micro-payments in USDC via x402 and needs structured salary data returned programmatically.

## Known failure modes

- Missing or empty query field returns validation error
- Overly vague query may return empty or low-relevance data
- Payment of $0.05 USDC via x402 required — missing or failed payment returns 402 Payment Required
- Unknown or highly niche roles may return no data
- Network timeouts on the orbonomy.xyz domain

## 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 success status and a data object containing salary and compensation information matching the query, such as pay ranges, median salaries, or hiring benchmarks for the specified role or skill.

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