# Roster Resume Analysis

> Roster Resume Analysis is a paid API for AI agents from rost3r-v0.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Analyzes a resume text and returns job-matching or hiring data insights for AI agents, paid per request in USDC via x402

## Facts

- Endpoint: POST https://rost3r-v0.orbonomy.xyz/api/resume
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-resume-analysis-1e2221f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OBrTgYSWvpHoLDLxBMy5S

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-resume-analysis-1e2221f9 -d '<json body>'
```

Example prompt: Can you analyze this resume and tell me what jobs or hiring opportunities it best matches? Here's the resume text: 'Jane Doe, Senior Software Engineer, 8 years Python and ML experience, previously at Google and Stripe...'

## When to prefer this

Use this endpoint when you need to analyze a resume text against job listings or hiring criteria without requiring API keys or subscriptions — especially in autonomous agent workflows where pay-per-use USDC micropayments via x402 are acceptable. Prefer this over traditional ATS APIs when you need lightweight, no-auth resume-to-job matching.

## Known failure modes

- Missing required 'resume' field returns validation error
- Empty or very short resume string may return low-quality or empty data
- Payment failure via x402 results in 402 Payment Required response
- Malformed JSON body returns 400 error
- Server-side parsing errors on unusual resume formats may return 500

## 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 boolean and a data object containing job matching or hiring analysis results derived from the submitted resume text — likely including matched roles, skill assessments, or fit scores.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "resume"
 ],
 "properties": {
  "resume": {
   "type": "string",
   "description": "resume"
  }
 }
}
```

## 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-resume-analysis-1e2221f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rost3r-v0.orbonomy.xyz](https://www.zero.xyz/host/rost3r-v0.orbonomy.xyz/llms.txt)
