# CareerPulse Skills Gap Analysis

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

Analyzes the gap between a job-seeker's current skills and those required for a target role, returning a prioritized list of missing skills and actionable steps to close them.

## Facts

- Endpoint: GET https://careerpulse.theaslangroupllc.com/api/career/skills-gap
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/careerpulse-skills-gap-analysis-d4d119c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qmTwX0wrVzWN5fLfHbErk

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-skills-gap-analysis-d4d119c6
```

Example prompt: I'm currently a junior frontend developer who knows HTML, CSS, JavaScript, and React — can you analyze my skills gap and tell me exactly what I need to learn to become a senior full-stack engineer?

## When to prefer this

Use this endpoint when a user wants a structured, actionable breakdown of the specific skills they need to acquire to reach a target role — particularly useful for job-seeker agents doing career planning or career-coach agents advising clients on upskilling paths. Prefer over generic job search endpoints when the goal is skill development rather than job matching.

## Known failure modes

- Missing or vague target role returns generic or empty skill list
- Unrecognized niche roles may yield limited gap data
- Overly broad current-skills input reduces precision of gap analysis
- API returns 402 if payment of 0.1 USDC is not processed
- Rate limiting or service unavailability returns 5xx error

## How this service works

Skills gap analysis for job-seeker and career-coach agents. Returns exactly what skills are needed to reach a target role and how to close the gap.

## Output

Returns a structured skills gap report detailing exactly which skills are missing or underdeveloped relative to the target role, how critical each gap is, and prioritized recommendations for closing each gap through learning, practice, or certification.

## 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 | ja | ko | pt | ar | hi"
      },
      "target": {
       "type": "string",
       "description": "data scientist at a top tech company"
      },
      "current": {
       "type": "string",
       "description": "junior software engineer with Python and SQL"
      }
     }
    }
   },
   "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": {
  "gap_skills": [
   "Machine learning (scikit-learn, PyTorch)",
   "Statistics (A/B testing)",
   "Data visualization (Tableau, Plotly)"
  ],
  "learning_path": [
   {
    "skill": "ML fundamentals",
    "weeks": 8,
    "resource": "fast.ai (free)"
   }
  ],
  "cert_recommended": "Google Data Analytics Certificate",
  "time_to_ready_months": 9
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/careerpulse-skills-gap-analysis-d4d119c6/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)
