# CareerPulse Resume Intelligence API

> CareerPulse Resume Intelligence API is a paid API for AI agents from careerpulse-steel.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes a resume for ATS compatibility, scoring it and identifying keyword gaps, formatting issues, and a suggested headline

## Facts

- Endpoint: GET https://careerpulse-steel.vercel.app/api/career/resume
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/careerpulse-resume-intelligence-api-e80fbf24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0rFTXlh6kyj1qQfcXp6Bk

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 careerpulse-resume-intelligence-api-e80fbf24
```

Example prompt: Can you check my resume against a Senior Software Engineer role — I want to know my ATS score, what keywords I'm missing like TypeScript or system design, any formatting problems, and get a better headline suggested?

## When to prefer this

Use this endpoint when you need a structured, quantitative ATS compatibility assessment of a resume with specific keyword gap identification and headline recommendations — particularly useful when a user is targeting a specific role and wants actionable, enumerated fixes rather than generic advice.

## Known failure modes

- Missing or malformed resume input returns an error
- Unsupported language or file format causes parsing failure
- Ambiguous or very short resume content may produce low-confidence scores
- Network timeout on the Vercel deployment under heavy load
- Payment not processed or invalid USDC payment results in 402 rejection

## How this service works

Global career intelligence API serving the world's 3.5 billion workers. 10 endpoints: salary benchmarking (any role + any country, sourced from BLS, OECD, ILO, Glassdoor, Levels.fyi), industry outlook, skills-gap analysis (with Coursera/Udemy/Pluralsight course links), ATS-optimized resume intelligence, salary negotiation playbooks, career transition roadmaps, remote work setup intelligence, certification recommendations (with A Cloud Guru/Pluralsight links), interview prep, and layoff/severance guidance. Full global scope — 190+ countries, 75+ languages via ?lang= parameter. LinkedIn Premium and resume builder affiliate links on relevant endpoints. All require x402 micropayment (USDC on Base).

## Output

Returns a JSON object with: ats_score (integer 0-100 rating resume ATS compatibility), keyword_gaps (array of missing keywords relevant to the target role), format_issues (array of formatting problems detected), and suggested_headline (an optimized professional headline string).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar | hi"
      },
      "role": {
       "type": "string",
       "description": "software engineer | product manager | data scientist | nurse | teacher | sales"
      },
      "industry": {
       "type": "string",
       "description": "tech | healthcare | finance | consulting | education"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ats_score": 72,
  "keyword_gaps": [
   "TypeScript",
   "system design",
   "cross-functional leadership"
  ],
  "format_issues": [
   "Summary too long",
   "Missing metrics on impact"
  ],
  "suggested_headline": "Senior Software Engineer | Distributed Systems | 8 Years"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/careerpulse-resume-intelligence-api-e80fbf24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from careerpulse-steel.vercel.app](https://www.zero.xyz/host/careerpulse-steel.vercel.app/llms.txt)
