# Roster Job Lookup

> Roster Job Lookup is a paid API for AI agents from roster-phi-puce.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches detailed job listing and hiring data for a specific job ID, paid per-request in USDC via x402 protocol

## Facts

- Endpoint: POST https://roster-phi-puce.vercel.app/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-397105bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YwYDS3l_oj5jNCxeyQ8zN

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

Example prompt: Can you pull up the full details for job listing ID 'jb_8472a3' from Roster so I can see the role, company, and requirements?

## When to prefer this

Use this endpoint when you need structured job listing data for a specific known job ID and want pay-per-request access with no subscription or API key required — ideal for AI agents that need on-demand, low-friction job data access using USDC micropayments.

## Known failure modes

- Invalid or nonexistent job ID returns error or empty data
- Missing required 'id' field returns validation error
- Payment failure via x402 protocol prevents data access
- Service unavailable if Vercel deployment 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 JSON object with success boolean and a data object containing the full job listing details — including role title, company, requirements, and other hiring metadata — 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-lookup-397105bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster-phi-puce.vercel.app](https://www.zero.xyz/host/roster-phi-puce.vercel.app/llms.txt)
