# Roster Resume Submission

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

Submits a resume text to receive job listings and hiring data matched to the candidate's profile

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/resume
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-resume-submission-4ed8908b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NcIwAZ0nDE2mQpwoGL5Oo

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-submission-4ed8908b -d '<json body>'
```

Example prompt: Here's my resume — can you find job listings and hiring opportunities that match my background? I have 5 years of experience in machine learning engineering at startups, a BS in Computer Science, and skills in Python, PyTorch, and distributed systems.

## When to prefer this

Use this endpoint when an agent needs to match a candidate's resume against job listings without requiring account creation or subscription — ideal for pay-per-use pipelines where the agent submits raw resume text and receives relevant hiring data in a single call

## Known failure modes

- Missing 'resume' field in request body returns validation error
- Empty or malformed resume string may return empty results or error
- Payment failure via x402 protocol blocks request execution
- Malformed JSON body returns 400-level error
- Resume too long or containing unsupported characters may cause parsing failure

## 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 flag and a data object containing job listings and hiring information matched to the submitted resume content

## 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-submission-4ed8908b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster.orbonomy.xyz](https://www.zero.xyz/host/roster.orbonomy.xyz/llms.txt)
