# Roster Job Lookup

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

Retrieves job listing and hiring data for a specific job ID, payable per-request in USDC via x402

## Facts

- Endpoint: POST https://raoster.orbonomy.xyz/api/job
- Price: $0.02/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-lookup-15e4a0a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t2N9mZP6eMvzm54q7q8qn

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-lookup-15e4a0a5 -d '<json body>'
```

Example prompt: Can you pull up the job listing details for job ID 'jb_abc123' from Roster — I want to see the full posting and hiring data for it.

## When to prefer this

Use this endpoint when you have a specific job ID and need to retrieve the full details of that listing programmatically, without requiring API keys or subscriptions — especially when operating in an x402 micropayment-enabled agent workflow where per-request USDC payments are acceptable.

## Known failure modes

- Missing or invalid job ID returns an error or empty data
- Job ID not found results in success:false or empty data object
- Payment failure via x402 prevents access to the response
- Malformed request body returns a validation error
- Endpoint may be unavailable if the service or domain is down

## 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 success boolean and a data object containing job listing and hiring information for the requested job ID. The exact fields in the data object are not specified in the schema but likely include role details, company info, requirements, and compensation.

## 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-lookup-15e4a0a5/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)
