# Roster Salary Data API

> Roster Salary Data API is a paid API for AI agents from rasoster.netlify.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Returns salary and compensation data for job roles based on a natural language query, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/salary
- Price: $0.3/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-75cdaac5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_618Kb6350AzBEcA2O9HT6

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

Example prompt: Can you look up the salary data for senior software engineers using Roster — my query is 'senior software engineer compensation'?

## When to prefer this

Use this endpoint when an AI agent needs on-demand, pay-per-use salary or job compensation data without requiring API key signup or subscriptions — ideal for lightweight, cost-controlled lookups via x402 USDC micropayments.

## Known failure modes

- Missing or empty query field returns validation error
- Payment failure via x402 results in 402 response blocking access
- Ambiguous or unsupported query may return empty or low-confidence data
- Service unavailable on Netlify hosting causes 5xx errors

## 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 salary and compensation details relevant to the submitted job query.

## 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-75cdaac5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rasoster.netlify.app](https://www.zero.xyz/host/rasoster.netlify.app/llms.txt)
