# BizIntel API – Cost of Living & Quality of Life Lookup

> BizIntel API – Cost of Living & Quality of Life Lookup 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).

Returns a cost-of-living score and quality-of-life index for a given location, with confidence rating and data vintage

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/cost-of-living
- 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-api-cost-of-living-quality-of-life-lookup-516b8211
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ktkyyf46df7P8SkcSr6e6

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-api-cost-of-living-quality-of-life-lookup-516b8211 -d '<json body>'
```

Example prompt: What's the cost of living score and quality of life index for Barcelona, Spain? I need the confidence level too so I can use it for a salary benchmarking report.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call cost-of-living or quality-of-life score for a specific city or region, especially in B2B contexts like salary benchmarking, talent relocation, or compensation planning. Prefer this over general web search when you need a structured numeric score with a confidence rating and a known data vintage date.

## Known failure modes

- Location not supported — 'supported: false' returned with empty result
- Low confidence data available — warnings array populated with caveats
- Ambiguous city name with multiple matches — may return unexpected region
- Payment failure via x402 — call not executed, no data returned
- Missing or malformed location input — likely 400 error or empty result

## How this service works

Fetches cost of living, safety, and healthcare score indices for an urban area from the Teleport API.

## Output

A JSON object containing a numeric quality_of_life score (e.g. 82.3), a cost_of_living_score (e.g. 1.2), a confidence level (e.g. 'high'), a data_as_of date string (e.g. '2026-06'), a boolean indicating whether the location is supported, any warnings, and a standard informational disclaimer.

## 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"
     ],
     "properties": {
      "city": {
       "type": "string",
       "description": "City name slug (e.g. san-francisco-bay-area, london, 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": {
   "quality_of_life": 82.3,
   "cost_of_living_score": 1.2
  },
  "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-api-cost-of-living-quality-of-life-lookup-516b8211/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)
