# Roster Industry Job Listings

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

Returns job listings and hiring data for a specified industry, optionally filtered by region, with payment via x402 USDC microtransactions

## Facts

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

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

Example prompt: Pull current job listings and hiring data for the technology industry in the United States from Roster.

## When to prefer this

Use this endpoint when an agent needs structured job listing or hiring data for a specific industry without requiring API keys or subscriptions — ideal for lightweight, pay-per-use labor market lookups via USDC microtransactions.

## Known failure modes

- Missing required 'industry' field returns validation error
- Invalid or unrecognized industry string may return empty data set
- Payment failure via x402 results in 402 response blocking data access
- Unrecognized region string may return global results or error
- Network timeout if upstream hiring 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 a geographic 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-b6c739c5/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)
