# Roster Job Offer Comparison

> Roster Job Offer Comparison 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).

Compares two job offers side-by-side and returns structured hiring/compensation analysis

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/offer
- 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-job-offer-comparison-ad9e5eeb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1fsLvSjlGqgN2VQ9TzGvl

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-offer-comparison-ad9e5eeb -d '<json body>'
```

Example prompt: Compare these two job offers for me: offer A is a senior software engineer role at $150k salary with 2 weeks PTO and remote work, and offer B is a staff engineer role at $140k with 4 weeks PTO, equity, and hybrid work — which one comes out ahead?

## When to prefer this

Use this endpoint when an AI agent needs to objectively compare two job offers or hiring packages without requiring user authentication or a subscription. Ideal for agents helping candidates decide between positions, or recruiters evaluating competing offers. The x402 pay-per-request model makes it suitable for low-frequency, on-demand comparisons without commitment.

## Known failure modes

- Missing offer_a or offer_b fields returns validation error
- Malformed offer objects may return 400 or empty data
- Payment not completed via x402 returns 402 Payment Required
- Ambiguous or incomplete offer data may yield low-quality comparison
- Service downtime on Netlify host returns 502 or 503

## 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 flag and a data object containing a structured comparison or analysis of the two submitted job offers, likely including a recommendation, scoring, or breakdown of key differences.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "offer_a",
  "offer_b"
 ],
 "properties": {
  "offer_a": {
   "type": "object"
  },
  "offer_b": {
   "type": "object"
  }
 }
}
```

## 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-offer-comparison-ad9e5eeb/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)
