# Roster Job Listings API

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

Retrieves job listing and hiring data for a specific job by ID, paid per request in USDC via x402 protocol

## Facts

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

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-listings-api-b93b91e5 -d '<json body>'
```

Example prompt: Can you pull up the job listing details for job ID 'eng-12345' from Roster — I want to see the full hiring info for that position.

## When to prefer this

Use this endpoint when you need on-demand, pay-per-request job listing data without committing to a subscription, especially in agentic workflows where job lookups are infrequent or variable. Prefer this over scraping job boards or maintaining API subscriptions when only specific job IDs need to be resolved.

## Known failure modes

- Invalid or missing job ID returns an error or empty data object
- Payment failure via x402 prevents access to the endpoint
- Nonexistent job ID returns success:false or empty data
- Malformed request body missing required 'id' field returns a 400-level error
- Service unavailability on rost3r-v0.orbonomy.xyz results in connection timeout

## 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 the job listing and hiring details for the requested job ID

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "id"
  }
 }
}
```

## 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-listings-api-b93b91e5/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)
