# BizIntel Cost of Living Comparison

> BizIntel Cost of Living Comparison 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-14).

Compares cost of living between two locations using a normalized index score for talent intelligence and relocation decisions

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/cost-living-compare
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-cost-of-living-comparison-3d2717f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vaw71j1Z-4DxiS5psX3oV

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-cost-of-living-comparison-3d2717f2 -d '<json body>'
```

Example prompt: Compare the cost of living between Austin, Texas and San Francisco, California — I need a normalized index score to figure out how much to adjust a candidate's salary offer if they're relocating.

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call cost-of-living index between two specific locations for talent compensation benchmarking, relocation planning, or remote work salary normalization — especially when you want a numeric index rather than raw cost breakdowns. Prefer this over manual research or general data APIs when you need structured, confidence-rated output with no API key setup required.

## Known failure modes

- Unsupported city or region pair returns supported: false with empty comparison_index
- Ambiguous city names without country context may return low confidence or warnings
- Misspelled or unrecognized locations may return errors or null data
- Stale data may be flagged via warnings array with a past data_as_of date
- Payment failure via x402 results in 402 response before data is returned

## How this service works

Compares cost of living, pricing indices, and safety metrics between two cities via Teleport.

## Output

Returns a JSON object with a numeric comparison_index (e.g. 0.85 indicating the destination is 85% the cost of the origin), a confidence level (e.g. 'high'), a supported boolean indicating whether the location pair is covered, a data_as_of date string, any warnings, and a standard disclaimer about informational use only.

## 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": [
      "city_one",
      "city_two"
     ],
     "properties": {
      "city_one": {
       "type": "string",
       "description": "Base city slug (e.g. london)"
      },
      "city_two": {
       "type": "string",
       "description": "Target city slug (e.g. tokyo)"
      }
     }
    },
    "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": {
   "comparison_index": 0.85
  },
  "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-cost-of-living-comparison-3d2717f2/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)
