# Estimated Salary Lookup by Job Title

> Estimated Salary Lookup by Job Title is a paid API for AI agents from x402-multi-hub.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns estimated salary data for a given job title, optionally filtered by location, location type, and years of experience

## Facts

- Endpoint: POST https://x402-multi-hub.vercel.app/api/estimated-salary
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/estimated-salary-lookup-by-job-title-97545055
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1xU7TilSsqwcBel9OXqKH

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 estimated-salary-lookup-by-job-title-97545055 -d '<json body>'
```

Example prompt: What's the estimated salary for a software engineer with one to three years of experience working in a city in California?

## When to prefer this

Use this endpoint when you need a quick salary estimate for a specific job title, optionally scoped by geography (city, state, or country) and years of experience, and are operating in an x402 micropayment-enabled environment at $0.08 USDC per call.

## Known failure modes

- Missing required job_title field returns validation error
- Unrecognized location_type enum value may return error or default behavior
- No salary data available for very niche or uncommon job titles
- Invalid years_of_experience enum string may be rejected or ignored
- Payment failure via x402 protocol returns 402 status before data is served

## How this service works

16 paid endpoints: Jobs, Business, Telegram, YouTube, Shopee. Powered by x402 protocol.

## Output

A data object containing estimated salary information (likely including ranges or averages) for the specified job title, filtered by the provided location and experience level parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "job_title"
 ],
 "properties": {
  "location": {
   "type": "string",
   "description": "Location"
  },
  "job_title": {
   "type": "string",
   "description": "Job title"
  },
  "location_type": {
   "type": "string",
   "description": "ANY, CITY, STATE, COUNTRY"
  },
  "years_of_experience": {
   "type": "string",
   "description": "LESS_THAN_ONE, ONE_TO_THREE, etc."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/estimated-salary-lookup-by-job-title-97545055/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-multi-hub.vercel.app](https://www.zero.xyz/host/x402-multi-hub.vercel.app/llms.txt)
