# TalentPulse Salary Benchmarks API

> TalentPulse Salary Benchmarks API is a paid API for AI agents from talentpulse-six.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns salary bands by experience tier, USD equivalents, bonus/equity norms, and market context for any role and location across 50+ countries

## Facts

- Endpoint: GET https://talentpulse-six.vercel.app/api/talent/salary
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/talentpulse-salary-benchmarks-api-cad60644
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CURx4YcDPfnADlQfLGLoo

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-salary-benchmarks-api-cad60644
```

Example prompt: What are the salary bands for a senior product manager in Singapore — break it down by experience tier, include bonus and equity norms, and give me the USD equivalent.

## When to prefer this

Choose this endpoint when you need granular, experience-tiered salary bands with USD equivalents, bonus norms, and equity context for a specific role in a specific country. It is especially useful for global recruiting workflows, compensation planning, and offer letter preparation across 50+ countries. Prefer this over general web search when structured, comparable compensation data is needed across multiple experience levels in a single call.

## Known failure modes

- Unsupported country or location returns empty or error response
- Unrecognized job title may return no results or nearest approximation
- Missing required parameters (role or location) returns validation error
- Rate limiting or payment failure (x402) returns 402 Payment Required
- Ambiguous role names may produce mismatched benchmark data

## How this service works

Salary benchmark by job title, city and country worldwide — pay range and base salary bands by experience level (entry/mid/senior), median and percentile pay, USD equivalent, plus bonus and equity norms and market context. Convert to any currency (USD/GBP/EUR/SGD/INR). 50+ countries, 10 languages, for recruiting, HR and compensation agents.

## Output

Returns structured salary benchmarking data including base salary bands segmented by experience tier (junior/mid/senior), local currency figures with USD equivalents, typical bonus percentages, equity norms, and contextual market commentary — covering 50+ countries in 10 languages.

## 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": "Job title — e.g. \"Software Engineer\" | \"Data Scientist\" | \"Product Manager\" | \"Registered Nurse\" | \"Civil Engineer\" | \"Marketing Director\""
      },
      "country": {
       "type": "string",
       "description": "Country name — optional, inferred from location if omitted"
      },
      "currency": {
       "type": "string",
       "description": "Preferred currency code — USD | GBP | EUR | SGD | INR | AUD | CAD (default: local currency)"
      },
      "location": {
       "type": "string",
       "description": "City or region — e.g. \"London\" | \"Singapore\" | \"São Paulo\" | \"Dubai\" | \"Bangalore\" | \"Toronto\" | \"Amsterdam\""
      },
      "experience": {
       "type": "string",
       "description": "entry | mid | senior | all (default: all)"
      }
     }
    }
   },
   "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",
  "country": "Singapore",
  "currency": "SGD",
  "location": "Singapore",
  "salary_bands": {
   "mid": {
    "max": 130000,
    "min": 80000,
    "median": 105000,
    "currency": "SGD"
   },
   "entry": {
    "max": 72000,
    "min": 48000,
    "median": 60000,
    "currency": "SGD"
   },
   "senior": {
    "max": 220000,
    "min": 130000,
    "median": 165000,
    "currency": "SGD"
   }
  },
  "market_context": "Singapore tech salaries rose 8-12% in 2024 driven by FAANG and regional super-app expansion.",
  "usd_equivalent": {
   "mid_median_usd": 78300,
   "entry_median_usd": 44700,
   "senior_median_usd": 123000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/talentpulse-salary-benchmarks-api-cad60644/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)
