# CareerPulse Career Transition Roadmap

> CareerPulse Career Transition Roadmap 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-13).

Returns a career transition analysis including skill gaps, feasibility score, bridge roles, transferable skills, and estimated transition timeline for moving from one role to another.

## Facts

- Endpoint: GET https://careerpulse-steel.vercel.app/api/career/transition
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/careerpulse-career-transition-roadmap-40db82a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ItlJrAK85jun6Ty09ndTv

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-career-transition-roadmap-40db82a9
```

Example prompt: I'm currently a software engineer and want to transition into product management — can you give me a career transition roadmap showing my skill gaps, any good bridge roles I should consider, how feasible the move is, and roughly how many months it would typically take?

## When to prefer this

Use this endpoint when a user explicitly wants to understand the pathway from one career to another, including feasibility, skill gaps, and bridge roles. Prefer this over general salary or skills endpoints when the user's intent is a career pivot or transition plan rather than benchmarking or skill development in their current role.

## Known failure modes

- Unsupported or unrecognized role names may return empty or generic results
- Highly niche roles in certain countries may have limited data coverage
- Missing required role parameters return a 400 error
- Payment not fulfilled via x402 returns a 402 Payment Required response
- Unsupported language code via ?lang= parameter falls back to English or returns error

## 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

A JSON object containing: a list of identified skill gaps (e.g. 'Product sense', 'SQL/data skills'), a feasibility rating (e.g. 'high'), suggested bridge roles to ease the transition (e.g. 'Technical PM'), a list of transferable skills from the current role, and a numeric estimate of typical transition duration in months.

## 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": {
      "yoe": {
       "type": "string"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | ja | ko | pt | ar | hi"
      },
      "to_role": {
       "type": "string"
      },
      "from_role": {
       "type": "string"
      }
     }
    }
   },
   "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": {
  "gaps": [
   "Product sense",
   "SQL/data skills"
  ],
  "feasibility": "high",
  "bridge_roles": [
   "Technical PM",
   "Solutions Engineer"
  ],
  "transferable_skills": [
   "Systems thinking",
   "Cross-functional collaboration",
   "Technical communication"
  ],
  "typical_transition_months": 8
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/careerpulse-career-transition-roadmap-40db82a9/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)
