# Roster Interview Data Endpoint

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

Returns job listing and interview-related hiring data for a specified job title, paid per request via x402/USDC

## Facts

- Endpoint: POST https://raoster.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-data-endpoint-98860ea9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v2OX2S8mnV4T3s1vclXwS

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-data-endpoint-98860ea9 -d '<json body>'
```

Example prompt: Can you pull up the job listing and interview data for a 'Senior Software Engineer' role from Roster?

## When to prefer this

Use this endpoint when an agent needs on-demand, pay-per-use job listing or interview data for a specific job title without requiring API keys or subscriptions. Ideal for agents that need lightweight, ad-hoc access to hiring data and can transact in USDC via x402.

## Known failure modes

- Missing required 'jobTitle' field returns a validation error
- Payment of 0.3 USDC not completed via x402 results in 402 Payment Required
- Invalid or unrecognized job title may return empty or sparse data
- Service downtime at raoster.orbonomy.xyz results in connection errors
- Malformed POST 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

A JSON object with a success flag and a data object containing job listing and hiring-related information for the specified job title, such as interview questions, required skills, or role details.

## 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-data-endpoint-98860ea9/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)
