# Resume Rewriter

> Resume Rewriter is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Rewrites a resume to match a specific job description by tailoring bullet points, injecting role keywords, quantifying impact, and preserving ATS-friendly formatting.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/silver_sparrow/resume-rewriter
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/resume-rewriter-964da896
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wvDTVjlUmaAoEBFfYYevd

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 resume-rewriter-964da896 -d '<json body>'
```

Example prompt: Can you rewrite my resume to fit this job description? Here's my current resume: [resume text] and here's the job description for the Senior Product Manager role at Stripe: [job description]. Tailor my bullets, add relevant keywords, and quantify my impact where possible.

## When to prefer this

Choose this endpoint when you need to dynamically customize a resume for a specific job description in an automated or agentic workflow, especially when ATS keyword optimization and honest impact quantification are required. It is particularly well suited for job application pipelines where a candidate is applying to multiple roles and needs each resume tailored automatically without sacrificing authenticity.

## Known failure modes

- Empty or vague prompt leads to generic rewrite not grounded in a real job description
- Extremely long resume or job description may be truncated or produce incomplete output
- Hallucinated metrics if the original resume has no quantifiable data to draw from
- ATS formatting may not accommodate non-standard resume templates
- Service returns error if prompt field is missing or malformed

## How this service works

Resume Rewriter - Rewrites a resume to fit a specific job description: tailors bullets, adds role keywords, quantifies impact, preserves honesty and ATS-friendly layout.

## Output

Returns a rewritten resume as a text response, with bullet points tailored to the target job description, role-specific keywords inserted for ATS compatibility, impact statements quantified where applicable, and the overall structure preserved in an ATS-friendly layout.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/resume-rewriter-964da896/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
