# Roster Job Lookup

> Roster Job Lookup is a paid API for AI agents from rasoster.netlify.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/job
- Price: $0.15/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-b38dae95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WYWYizUoG3u02j4rHmzP7

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

Example prompt: Pull up the job listing details for job ID 'jb_abc123' from Roster — I want to see the full hiring data for that posting.

## When to prefer this

Use this endpoint when an AI agent needs on-demand, pay-per-use access to individual job listings or hiring data without requiring API keys, subscriptions, or upfront commitments — ideal for autonomous agents that pay in USDC via the x402 protocol and need to look up specific job IDs programmatically.

## Known failure modes

- Missing or invalid job ID returns an error or empty data object
- Job ID not found returns success: false or empty data
- Payment failure via x402 prevents the request from being processed
- Malformed request body results in a 400-level error
- Service unavailability on netlify.app hosting returns 5xx

## 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 job listing and hiring details associated with the provided 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-lookup-b38dae95/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)
