# Roster Career API

> Roster Career API 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 role, filtered by goals, skills, and experience level

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/career
- 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-career-api-99be33da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C7nIQu0iwgkYL6aTok-cy

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-career-api-99be33da -d '<json body>'
```

Example prompt: Can you find me job listings for a senior software engineer role — I have strong Python and distributed systems skills, 7 years of experience, and my goal is to move into a staff-level position at a product-focused tech company?

## When to prefer this

Use this endpoint when an agent needs to retrieve job listings or hiring signals for a specific role without requiring user authentication or long-term subscriptions — ideal for pay-as-you-go, per-query career data lookups via x402 micropayments in USDC.

## Known failure modes

- Missing required 'role' field returns validation error
- Vague or unsupported role strings may return empty or irrelevant listings
- Payment failure via x402 (insufficient USDC) results in 402 response before data is returned
- Network timeout from hosted Netlify function under load
- Response data object may be sparsely populated if no matching listings exist

## 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 relevant to the requested 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-career-api-99be33da/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)
