# Roster Industry Job Listings

> Roster Industry Job Listings 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-16).

Returns job listings and hiring data for a specified industry, optionally filtered by region, via pay-per-request USDC payment

## Facts

- Endpoint: POST https://raoster.orbonomy.xyz/api/industry
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-industry-job-listings-6a2fd14c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FFhFo89q5UBizY6KU6puS

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-industry-job-listings-6a2fd14c -d '<json body>'
```

Example prompt: Can you pull up current job listings and hiring data for the technology industry in the United States?

## When to prefer this

Use this endpoint when an AI agent needs structured, on-demand job listing or hiring data for a specific industry without committing to a subscription. Ideal for pay-as-you-go workflows where labor market data is needed occasionally. Prefer this over scraping job boards directly when structured data and low friction access (no API key) is needed.

## Known failure modes

- Missing required 'industry' field returns validation error
- Invalid or unrecognized industry string may return empty data
- Payment failure via x402 results in 402 response and no data returned
- Unsupported or misspelled region returns empty or broad results
- Network timeout if backend data source is slow

## 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 for the specified industry, optionally scoped to the requested region.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "industry"
 ],
 "properties": {
  "region": {
   "type": "string"
  },
  "industry": {
   "type": "string"
  }
 }
}
```

## 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-industry-job-listings-6a2fd14c/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)
