# Roster Job Listings API

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

Retrieves job listings and hiring data for a specified role, filtered by goals, skills, and experience level, paid per request via x402/USDC

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/career
- 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-job-listings-api-d8fe6315
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tcdW_YOPeyWDw2SXrP5bq

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-job-listings-api-d8fe6315 -d '<json body>'
```

Example prompt: Can you find current job listings for a backend software engineer role where I have 5 years of experience, strong Python and AWS skills, and my goal is to work at a fast-growing startup?

## When to prefer this

Use this endpoint when an AI agent needs to search job listings or hiring data on a per-request, pay-as-you-go basis without requiring API keys or subscriptions. Ideal for agents helping users find jobs, research hiring trends, or match candidates to roles using skills and experience as filters.

## Known failure modes

- Missing required 'role' field returns validation error
- Payment failure via x402 results in 402 response and no data
- Empty result set if no listings match the given criteria
- Malformed request body returns 400 error
- Service unavailability returns 5xx 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

Returns a success flag and a data object containing job listings and hiring information relevant to the specified role, filtered by the provided goals, skills, and experience level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "role"
 ],
 "properties": {
  "role": {
   "type": "string"
  },
  "goals": {
   "type": "string"
  },
  "skills": {
   "type": "string"
  },
  "experience": {
   "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-job-listings-api-d8fe6315/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)
