# Roster Skills Search

> Roster Skills Search is a paid API for AI agents from roster-phi-puce.vercel.app, 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 market information for AI agents

## Facts

- Endpoint: POST https://roster-phi-puce.vercel.app/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-ddb6545e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y9MkaZBuoLI-20STJz81h

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

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

## When to prefer this

Use this endpoint when an AI agent needs on-demand job market data or skill-based hiring information without requiring API keys or subscriptions — ideal for pay-per-use workflows where you only pay $0.03 USDC per query via x402 micropayments.

## Known failure modes

- Empty or vague query returns sparse or no results
- Payment failure via x402 if USDC wallet is insufficient or not configured
- Malformed request body returns error
- Service downtime on Vercel deployment returns 5xx
- Query too broad returns overwhelming or low-quality results

## 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 JSON object with a success flag and a data object containing job listings and hiring information matching the queried skill or role.

## 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-ddb6545e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster-phi-puce.vercel.app](https://www.zero.xyz/host/roster-phi-puce.vercel.app/llms.txt)
