# Strale Employment Cost Estimate API

> Strale Employment Cost Estimate API is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0324/call, status unknown (last checked 2026-09-15).

Estimates the total employer cost of hiring an employee in a given country based on gross salary, including taxes and mandatory contributions.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/employment-cost-estimate
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-employment-cost-estimate-api-a6131240
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yuIjoC30fHNxZMJtJSIA_

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 strale-employment-cost-estimate-api-a6131240
```

Example prompt: What's the total employer cost to hire someone with a gross salary of 90000 USD in Germany — I need to understand all the mandatory contributions and taxes on top of the base salary.

## When to prefer this

Choose this endpoint when you need a fast, country-specific estimate of the true employer cost of hiring — including all mandatory payroll taxes and contributions — without needing a full HR or payroll system integration. It is especially useful for budget planning, market expansion analysis, or comparing hiring costs across the 27+ supported countries. Prefer it over generic payroll tools when you need structured JSON output with audit trails suitable for agent workflows and x402 micropayment-based access.

## Known failure modes

- Missing required gross_salary or country_code query parameters returns a 400 error
- Unsupported or invalid country_code returns an error or empty result
- Currency mismatch or unsupported currency code may cause calculation errors
- Payment failure or insufficient USDC balance returns a 402 Payment Required
- Rate limiting or service unavailability returns a 5xx error
- Data may be outdated if local tax regulations have recently changed

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns an estimated total employer cost for the given gross salary in the specified country, broken down by component (e.g. social security, health insurance, pension contributions, payroll taxes), along with the currency and audit metadata including a cryptographic chain hash.

## 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",
     "required": [
      "gross_salary",
      "country_code"
     ],
     "properties": {
      "currency": {
       "type": "string"
      },
      "country_code": {
       "type": "string"
      },
      "gross_salary": {
       "type": "number"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-employment-cost-estimate-api-a6131240/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
