# Roster Skills Search

> Roster Skills Search is a paid API for AI agents from raoster.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Searches job listings and hiring data by skill query, returning relevant job and hiring information for AI agents

## Facts

- Endpoint: POST https://raoster.orbonomy.xyz/api/skills
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-skills-search-19a4365b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w3V1gOICHLzZ94iGunS9c

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-skills-search-19a4365b -d '<json body>'
```

Example prompt: Search Roster for job listings and hiring data related to 'machine learning engineer' — I want to see what roles are out there and which companies are actively hiring for that skill.

## When to prefer this

Use this endpoint when an AI agent needs to look up job listings or hiring data by skill or role without requiring API key authentication or subscriptions — ideal for pay-per-use, low-friction job market lookups via x402 micropayments in USDC

## Known failure modes

- Payment not completed — returns 402 if USDC payment via x402 is not attached
- Empty or missing query field — may return no results or an error
- Query too vague — returns broad or irrelevant job listings
- Service unavailable — upstream data source down, returns 5xx
- Malformed request body — returns 400 if JSON is invalid

## 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 boolean and a data object containing job listings and hiring information matching the queried skill or search term

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## 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-skills-search-19a4365b/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)
