# Roster Interview Endpoint

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

Returns job listing and hiring data for a given job title, paid per-request via x402 USDC micropayment

## Facts

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

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

Example prompt: Can you pull up job listings and hiring data for 'machine learning engineer' from Roster?

## When to prefer this

Use this endpoint when you need quick, pay-per-use job listing or hiring data for a specific job title without requiring API keys, subscriptions, or authentication — ideal for agents making one-off or low-frequency job market lookups paid in USDC via x402

## Known failure modes

- Missing jobTitle field returns validation error
- Payment not provided or insufficient USDC causes 402 Payment Required response
- Invalid or empty jobTitle string may return empty data set
- Network or provider downtime causes 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

A JSON object with a success boolean and a data object containing job listings and hiring information relevant to the queried job title

## 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-32a6333f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rost3r-v0.orbonomy.xyz](https://www.zero.xyz/host/rost3r-v0.orbonomy.xyz/llms.txt)
