# Roster Job Listing Lookup

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

Retrieves a specific job listing or hiring record by ID from the Roster job data platform, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://roster.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-listing-lookup-706f40a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rwueJbf8dAuAbuanOTCnr

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-listing-lookup-706f40a6 -d '<json body>'
```

Example prompt: Can you pull up the job listing details for ID 'jb_28af93c' from Roster — I want to see the full posting info without signing up for anything.

## When to prefer this

Choose this endpoint when you have a specific job listing ID and need to retrieve its full details on a pay-per-use basis without API keys or subscriptions. Ideal for agents that need occasional, targeted job data lookups without committing to a recurring plan. Best suited when the job ID is already known from a prior search or external source.

## Known failure modes

- Invalid or unknown job ID returns an error or empty data object
- Malformed request body missing required 'id' field returns a validation error
- Payment failure via x402 results in 402 response before the lookup executes
- Service downtime or network errors return 5xx responses
- Stale or deleted job listings may return empty or null data even with a valid ID

## 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 boolean and a data object containing the full job listing or hiring record associated with the provided ID, including details such as role, company, requirements, and other structured hiring data.

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