# TalentPulse Employer-of-Record Cost Calculator

> TalentPulse Employer-of-Record Cost Calculator 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-15).

Returns the total cost of hiring a full-time employee in a given country, including employer tax burden, mandatory benefits, termination costs, and EOR-vs-entity analysis.

## Facts

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

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-employer-of-record-cost-calculator-e9f6d237
```

Example prompt: What would it actually cost us to hire a senior software engineer at a $120,000 base salary in Germany — give me the full employer burden including taxes, mandatory benefits, and termination exposure, and tell me whether it makes more sense to use an EOR or set up our own entity there.

## When to prefer this

Use this endpoint when an HR or hiring agent needs to calculate the true all-in employer cost for a specific country, including tax burden and mandatory benefits — especially when the user is deciding between EOR and entity setup. Prefer this over generic salary benchmarking endpoints when the focus is on employer cost rather than market compensation rates.

## Known failure modes

- Country not supported (outside the 60+ supported countries) — returns error or empty result
- Invalid or missing country code/name — returns validation error
- Salary input out of plausible range — may return warning or capped estimate
- Network timeout on vercel deployment — returns 5xx
- Payment not processed (x402) — returns 402 Payment Required before data is delivered

## How this service works

Total cost to hire a full-time employee in any country — employer tax burden, mandatory benefits, 13th salary, termination and severance costs, plus employer-of-record (EOR) vs own-entity analysis. Employment cost model across 60+ countries for hiring, payroll and HR-compliance agents. 10 languages.

## Output

A structured breakdown of total employer cost for a hire in the specified country, including employer tax rates, mandatory benefit costs, estimated termination/severance liability, and a recommendation or cost comparison between using an Employer of Record versus establishing a local legal entity.

## 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)"
      },
      "salary": {
       "type": "string",
       "description": "Annual gross salary as a number (local currency) — e.g. 100000 (optional, for cost model)"
      },
      "country": {
       "type": "string",
       "description": "Country to model — e.g. \"Brazil\" | \"Germany\" | \"Philippines\" | \"India\" | \"Mexico\" | \"Poland\""
      }
     }
    }
   },
   "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": "Brazil",
  "currency": "BRL",
  "mandatory_benefits": [
   "13th salary (mandatory Christmas bonus)",
   "Vacation bonus (1/3 of monthly salary)",
   "FGTS (8% to severance fund)",
   "Transport voucher",
   "Meal voucher"
  ],
  "termination_framework": {
   "severance_formula": "8% FGTS + 40% penalty on balance + 1 month notice per year",
   "at_will_employment": false,
   "wrongful_dismissal_risk": "very_high"
  },
  "employer_cost_breakdown": {
   "fgts_pct": 8,
   "total_employer_burden_pct": 68,
   "total_employer_burden_note": "One of the highest employer burdens globally — includes FGTS, INSS, vacation bonus, 13th salary, and RAT/FAP risk insurance",
   "social_security_employer_pct": 20
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/talentpulse-employer-of-record-cost-calculator-e9f6d237/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)
