# Roster Interview Endpoint

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

Returns job listings and hiring data for a given job title, paid per request via x402/USDC

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/interview
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-interview-endpoint-d1a62b74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tYF81tJhKFZDViOiKOB-S

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-interview-endpoint-d1a62b74 -d '<json body>'
```

Example prompt: Pull up job listings and hiring data for 'Machine Learning Engineer' from Roster — I want to see what positions are out there and any interview details.

## When to prefer this

Use this endpoint when an agent needs on-demand, pay-per-request job listing or hiring data for a specific job title without requiring API key setup or subscriptions. Ideal for agents embedded in job search, recruiting, or career planning workflows that need micro-payment-based access to employment data.

## Known failure modes

- Missing required jobTitle field returns validation error
- Invalid or empty jobTitle may return empty results
- Payment failure via x402 returns 402 Payment Required
- Service downtime returns 5xx error
- Malformed request body returns 400 Bad Request

## 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 flag and a data object containing job listings and hiring-related data for the requested job title, such as open positions, interview details, or hiring trends.

## Request schema (JSON Schema)

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

## 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-interview-endpoint-d1a62b74/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)
