# TalentPulse Salary Benchmark API

> TalentPulse Salary Benchmark API is a paid API for AI agents from talentpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns salary benchmarks by job title, city, and country — including pay bands by experience level, median/percentile pay, USD equivalent, bonus norms, and equity norms — for 50+ countries.

## Facts

- Endpoint: GET https://talentpulse.theaslangroupllc.com/api/talent/salary
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/talentpulse-salary-benchmark-api-3f9c0234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hg-BuiTrF2fLzsKqTMZpr

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-benchmark-api-3f9c0234
```

Example prompt: What's the full salary benchmark for a senior software engineer in Austin, Texas — give me entry, mid, and senior pay bands, the median, P25 and P75 percentiles, bonus and equity norms, and show the numbers in USD and EUR.

## When to prefer this

Use this endpoint when you need granular, location-specific salary benchmarks broken down by experience level with bonus/equity context, especially for recruiting or HR compensation decisions across 50+ countries. Prefer this over generic compensation databases when you need multi-currency output, percentile data, and market context in a single call.

## Known failure modes

- Job title not recognized or too ambiguous — returns 404 or empty results
- City or country not covered in the 50+ country dataset — returns 404 or no-data response
- Unsupported currency code requested — returns validation error
- Missing required parameters (job title, location) — returns 400 bad request
- Payment not completed or x402 header missing — returns 402 Payment Required

## 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 base salary bands for entry, mid, and senior experience levels; median and percentile (e.g. P25/P75) pay figures; USD equivalents and optional currency conversions; bonus and equity norms; and market context such as hiring demand signals — all scoped to the specified job title, city, and country.

## 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-benchmark-api-3f9c0234/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from talentpulse.theaslangroupllc.com](https://www.zero.xyz/host/talentpulse.theaslangroupllc.com/llms.txt)
