# TalentPulse Cost Comparison

> TalentPulse Cost Comparison is a paid API for AI agents from talentpulse-six.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-16).

Compares total employer cost for a given role across multiple countries, including salary, tax burden, mandatory benefits, EOR fees, and talent-quality tiers.

## Facts

- Endpoint: GET https://talentpulse-six.vercel.app/api/talent/cost-comparison
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/talentpulse-cost-comparison-38dd9d2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uYo3E7UB7rBj0hfsqCjv8

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 talentpulse-cost-comparison-38dd9d2d
```

Example prompt: Compare the total employer cost for a senior software engineer role across Poland, India, Mexico, and Brazil — I need the full breakdown including salary, employer taxes, mandatory benefits, and EOR fees so I can decide where to expand our engineering team.

## When to prefer this

Use this endpoint when you need a side-by-side multi-country employer cost comparison for the same role — it combines salary, taxes, benefits, EOR fees, and talent quality in a single response. Prefer this over single-country cost endpoints when doing expansion planning, budget modeling, or geo-arbitrage analysis across 2+ countries simultaneously.

## Known failure modes

- Unsupported country not in coverage database — returns 404 or empty result for that market
- Invalid or unrecognized job role title — may return generic or null benchmarks
- Missing required country or role parameter — returns 400 bad request
- Stale data for rapidly changing markets — cost figures may lag real-world changes
- Rate limiting or payment failure — 402 or 429 status if x402 payment not completed

## How this service works

Compare total employer cost of hiring the same role across multiple countries — salary, employer tax burden, mandatory benefits, EOR fees and talent-quality tiers side by side, with savings and best cost-quality analysis. For global hiring, offshoring, international-expansion and budget-planning agents. Any role, any countries, 10 languages.

## Output

Returns a structured comparison across the requested countries including: base salary benchmarks, employer payroll tax rates and amounts, mandatory benefits costs, employer-of-record (EOR) fees, and talent quality tier ratings — all totaled into a per-country annual employer cost figure for budget planning.

## 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 | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "role": {
       "type": "string",
       "description": "Role to compare — e.g. \"software engineer\" | \"data analyst\" | \"customer support manager\" | \"accountant\""
      },
      "countries": {
       "type": "string",
       "description": "Comma-separated list of countries — e.g. \"USA,India,Poland,Colombia\" | \"UK,Portugal,Romania,Ukraine\""
      },
      "experience": {
       "type": "string",
       "description": "mid | senior | entry (default: mid)"
      }
     }
    }
   },
   "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": {
  "role": "software engineer",
  "countries": [
   {
    "country": "USA",
    "key_advantage": "Best talent density, largest market",
    "talent_quality_tier": "tier_1_world_class",
    "annual_gross_salary_usd": 140000,
    "employer_tax_burden_pct": 12,
    "total_annual_employer_cost_usd": 165000
   },
   {
    "country": "Poland",
    "key_advantage": "Strong engineers, EU timezone, English proficient",
    "talent_quality_tier": "tier_1_world_class",
    "annual_gross_salary_usd": 45000,
    "employer_tax_burden_pct": 20,
    "total_annual_employer_cost_usd": 58000
   },
   {
    "country": "Colombia",
    "key_advantage": "US timezone overlap, fast-growing tech scene",
    "talent_quality_tier": "tier_2_strong",
    "annual_gross_salary_usd": 28000,
    "employer_tax_burden_pct": 52,
    "total_annual_employer_cost_usd": 47000
   }
  ],
  "cost_analysis": {
   "max_savings_pct": 65,
   "max_annual_savings_usd": 107000,
   "best_cost_quality_ratio": "Poland"
  },
  "experience_level": "mid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/talentpulse-cost-comparison-38dd9d2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from talentpulse-six.vercel.app](https://www.zero.xyz/host/talentpulse-six.vercel.app/llms.txt)
