# CareerPulse Resume Critique

> CareerPulse Resume Critique is a paid API for AI agents from careerpulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Analyzes submitted resume text and returns verbatim before/after bullet rewrites, ATS-compatibility flags, gap analysis vs target role, and country-specific format guidance for US, UK, Germany, Australia, and India.

## Facts

- Endpoint: GET https://careerpulse.theaslangroupllc.com/api/career/resume-critique
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/careerpulse-resume-critique-89d05514
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BUx1gBhhFv8sOsRP2-6wy

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-critique-89d05514
```

Example prompt: Can you critique my resume for a Senior Product Manager role in the UK market? Here's the full text: [paste resume text]. Flag any ATS issues, show me before/after rewrites of my bullet points, and tell me what gaps I have compared to a Senior PM role.

## When to prefer this

Use this endpoint when you need detailed, actionable resume feedback with verbatim rewrites rather than generic advice. Particularly valuable when the user needs ATS optimization, has a specific target role to benchmark against, or is applying to jobs in a specific country with different resume norms. Prefer this over generic resume optimization endpoints when the user wants to see exact before/after sentence-level rewrites and country-specific formatting guidance.

## Known failure modes

- Resume text exceeds 15,000 character limit — returns error asking user to trim content
- Missing resume_text parameter — returns 400 error requiring resume input
- Unsupported country code — returns error listing valid country options (US, UK, Germany, Australia, India)
- Payment not provided or insufficient — returns 402 Payment Required
- Resume text too short or not parseable as a resume — may return low-quality or generic critique

## How this service works

Resume critique with verbatim before/after bullet rewrites, ATS-compatibility flags, gaps vs target role, and country-specific format norms (US, UK, Germany, Australia, India). Submit real resume text via POST body or resume_text query param, 15k char cap.

## Output

Returns a structured critique including: verbatim before-and-after rewrites for each resume bullet, a list of ATS-compatibility flags (keywords, formatting issues), identified gaps between the resume and the target role, and country-specific formatting recommendations for the requested market (US, UK, Germany, Australia, or India).

## 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": {
      "seniority": {
       "type": "string",
       "description": "entry | mid | senior | executive"
      },
      "resume_text": {
       "type": "string",
       "description": "required, ≤15k chars; POST body also accepted"
      },
      "target_role": {
       "type": "string",
       "description": "e.g. senior product manager, backend engineer"
      },
      "target_country": {
       "type": "string",
       "description": "US | UK | DE | AU | IN | any country"
      }
     }
    }
   },
   "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": {
  "country_norms": {
   "target_country_guidance": "US: no photo, 1 page preferred, reverse-chronological"
  },
  "impact_rewrites": [
   {
    "why": "Replaces duty language with scope and a measurable outcome",
    "original": "Responsible for managing a team of engineers",
    "rewritten": "Led a 6-person engineering team, cutting release cycle time 35% over 2 quarters"
   }
  ],
  "ats_compatibility": {
   "flags": [
    "Multi-column layout implied by spacing — may misorder in ATS parsers"
   ]
  },
  "gaps_vs_target_role": [
   "No cloud infrastructure experience listed for a role that requires it"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/careerpulse-resume-critique-89d05514/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from careerpulse.theaslangroupllc.com](https://www.zero.xyz/host/careerpulse.theaslangroupllc.com/llms.txt)
