# Roster Resume Analysis

> Roster Resume Analysis is a paid API for AI agents from roster-phi-puce.vercel.app, 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 insights for AI agents, paid per request in USDC via x402

## Facts

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

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

Example prompt: Analyze this resume and tell me what jobs or roles it matches best: 'Jane Doe, 5 years of experience in full-stack engineering, proficient in React and Node.js, previously at Stripe and Shopify, B.S. Computer Science from UCLA.'

## When to prefer this

Choose this endpoint when you need to programmatically analyze or parse a resume and receive job-matching or hiring intelligence in return, especially in agentic workflows that need pay-per-use access with no subscription overhead. Ideal for one-off resume evaluations or pipelines that process candidate profiles on demand.

## Known failure modes

- Missing 'resume' field in request body returns validation error
- Empty or malformed resume string may return empty or low-quality data
- Payment failure via x402 protocol returns 402 status before processing
- Overly long resume text may be truncated or cause timeout
- Non-English resume content may yield reduced accuracy

## 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 structured analysis of the submitted resume — likely including extracted skills, experience summary, and relevant job matches or hiring recommendations.

## 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-466af77b/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)
