# Roster Job Offer Comparison

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

Compares two job offers or hiring data objects and returns structured analysis to help evaluate employment opportunities

## Facts

- Endpoint: POST https://raoster.orbonomy.xyz/api/offer
- 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-job-offer-comparison-5968b8d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RSVZBmejO7jx9FcSR4AwX

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-5968b8d2 -d '<json body>'
```

Example prompt: Compare these two job offers for me: Offer A is a senior engineer role at $160k base with 0.1% equity and remote work, and Offer B is a staff engineer role at $145k base with 0.5% equity and hybrid schedule — which one looks better overall?

## When to prefer this

Use this endpoint when you need to programmatically compare two job offers or hiring data objects without setting up auth or subscriptions — ideal for pay-per-use agent workflows handling employment decisions or HR data analysis.

## Known failure modes

- Missing offer_a or offer_b fields returns validation error
- Malformed offer objects may return empty or null data
- Payment failure via x402 results in 402 status and no data returned
- Incomplete offer data may produce low-confidence or partial comparisons

## 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 structured JSON object with a success flag and a data payload containing the comparative analysis of the two job offers, including relative assessments of each offer's attributes.

## 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-5968b8d2/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)
