# AI Resume Scorer & ATS Keyword Analyzer

> AI Resume Scorer & ATS Keyword Analyzer is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13, last successful call 2026-06-04).

Scores a resume against a job description on a 0-100 fit scale with calibrated subscores for keyword match, experience, skills, formatting, and impact, plus ranked improvement suggestions.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/resume-scorer
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Last successful call: 2026-06-04
- Success rate: 100% of calls made through Zero
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-e3bf8060
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oC-cYp7-unY8wHX_5mqm4

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 x402-deployer-x402-deployer-workers-dev-e3bf8060 -d '<json body>'
```

Example prompt: Score my resume against this job description and tell me the overall fit out of 100, plus subscores for keyword match, experience, skills, formatting, and impact — and give me the top things I should fix: [resume text] vs [job description text].

## When to prefer this

Choose this endpoint when you need a structured, multi-dimensional ATS-style fit score comparing a specific resume to a specific job description, especially when ranked improvement suggestions are needed. Prefer over generic text similarity tools when you want recruiter-calibrated subscores (keyword, experience, skills, formatting, impact) rather than a single similarity metric.

## Known failure modes

- Missing resume or job description text returns a 400 bad request
- Extremely short or malformed input may produce low-confidence scores
- Payment failure returns 402 Payment Required
- Very long documents may be truncated or time out
- Non-English resumes or job descriptions may yield lower accuracy

## How this service works

AI resume scorer / ATS keyword analyzer. Scores resume vs. job description (0-100 fit), with calibrated subscores: keyword match, experience, skills, formatting, impact. Ranked improvement suggestions.

## Output

Returns an overall fit score from 0-100, five calibrated subscores (keyword match, experience, skills, formatting, impact), and a prioritized list of ranked improvement suggestions indicating specific gaps between the resume and job description.

## Example request

```json
{
 "input": {
  "body": {
   "resume": "John Smith\nSoftware Engineer\n\nExperience:\n- 5 years as a Full Stack Developer at Tech Corp\n- Proficient in Python, JavaScript, React, Node.js\n- Led team of 3 developers on e-commerce platform\n- Implemented CI/CD pipelines using Jenkins\n\nEducation:\n- B.S. Computer Science, State University\n\nSkills: Python, JavaScript, React, Node.js, PostgreSQL, AWS, Docker",
   "job_description": "Senior Full Stack Developer\n\nRequirements:\n- 5+ years software development experience\n- Expertise in Python and JavaScript\n- React and Node.js proficiency required\n- Experience with cloud platforms (AWS/GCP)\n- Docker and containerization knowledge\n- Team leadership experience\n- CI/CD pipeline experience\n\nResponsibilities:\n- Design and implement scalable web applications\n- Mentor junior developers\n- Collaborate with product team on feature development"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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": {
     "required": [
      "resume",
      "job_description"
     ],
     "properties": {
      "resume": {
       "type": "string",
       "description": "Resume text to score. Max 18k chars."
      },
      "job_description": {
       "type": "string",
       "description": "Job description to score the resume against. Max 8k chars."
      }
     }
    },
    "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": {
      "score": {
       "type": "object",
       "properties": {
        "verdict": {
         "type": "string"
        },
        "subscores": {
         "type": "object",
         "properties": {
          "keyword_match": {
           "type": "integer"
          }
         }
        },
        "overall_score": {
         "type": "integer"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-e3bf8060/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
