# Roster Industry Job Listings

> Roster Industry Job Listings is a paid API for AI agents from rasoster.netlify.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Returns job listings and hiring data for a specified industry and optional region

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/industry
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-industry-job-listings-5a79038d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PmJK3mcvosj1l7GMuMJ1w

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

Example prompt: Can you pull the current job listings and hiring data for the technology industry in New York using Roster?

## When to prefer this

Use this endpoint when an AI agent needs structured job listing or hiring market data for a specific industry, optionally scoped to a region, without requiring API keys or subscriptions — paying per request in USDC via x402.

## Known failure modes

- Missing required 'industry' field returns validation error
- Invalid or unrecognized industry name may return empty data
- Payment failure via x402 results in 402 Payment Required response
- Network/hosting issues on Netlify may cause timeouts or 503 errors
- Malformed request body returns 400 error

## 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 listings and hiring information for the requested industry, optionally filtered by 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-5a79038d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rasoster.netlify.app](https://www.zero.xyz/host/rasoster.netlify.app/llms.txt)
