# BizIntel Salary Benchmark

> BizIntel Salary Benchmark is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns median base salary data for a given job title and location, with confidence rating and data freshness info.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/salary-benchmark
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-salary-benchmark-4b39c423
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N-54u2bh6LvuHddVLSl-d

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 bizintel-salary-benchmark-4b39c423 -d '<json body>'
```

Example prompt: What's the median base salary for a Data Scientist in Austin, Texas right now?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call salary benchmark for a specific job title and geography without subscribing to a full compensation platform. Ideal for AI agents performing one-off compensation research, offer validation, or budget estimation for individual roles. Better than scraping job boards when you need a structured, machine-readable median figure with a confidence rating.

## Known failure modes

- Unsupported or very niche job title returns supported:false with low confidence
- Unrecognized or misspelled location may return no data or low-confidence result
- Missing required fields (title or location) returns a validation error
- Highly localized or rural locations may lack sufficient data
- Data may lag current market conditions as indicated by data_as_of field

## How this service works

Resolves median salary ranges for job titles based on geographic regions.

## Output

A JSON object containing the normalized job title, location, median base salary (numeric), a confidence level (e.g. 'high'), the data currency date (e.g. '2026-06'), a supported flag indicating whether data is available, any warnings, and a disclaimer about the informational nature of the data.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "title",
      "location"
     ],
     "properties": {
      "title": {
       "type": "string",
       "description": "Job title (e.g. Data Scientist)"
      },
      "location": {
       "type": "string",
       "description": "City and state/country"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "title": "Software Engineer",
   "location": "San Francisco, CA",
   "median_base": 145000
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-salary-benchmark-4b39c423/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
