# RiskPulse Expat Living Guide

> RiskPulse Expat Living Guide is a paid API for AI agents from riskpulse-five.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a structured expat living assessment for any country, covering safety, healthcare, cost of living, visa ease, expat community, and insurance considerations.

## Facts

- Endpoint: GET https://riskpulse-five.vercel.app/api/risk/expat
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riskpulse-expat-living-guide-b3af5d45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fN9sihQbr9CzR-Kin4085

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 riskpulse-expat-living-guide-b3af5d45
```

Example prompt: Can you pull up the expat living guide for Portugal — I want to see the safety score, healthcare quality, cost of living, visa ease, expat community strength, and what insurance is recommended for someone relocating there long-term?

## When to prefer this

Choose this endpoint when an agent needs a holistic expat-specific country profile covering safety, healthcare, cost of living, visa ease, expat community, and insurance in a single call — rather than pulling individual data points from separate APIs. Ideal for relocation planning, expat advisory workflows, or comparing countries for long-term living suitability.

## Known failure modes

- Country not recognized or unsupported — returns 400 or empty result
- Missing required country parameter — returns validation error
- Service unavailable due to Vercel cold start or outage — returns 5xx
- Payment not processed (x402) — returns 402 Payment Required before data is served

## How this service works

Expat relocation risk, living-abroad guide, moving overseas assessment for any country. Returns safety, healthcare, cost of living, visa ease, expat community, and insurance guidance.

## Output

A structured country-level expat profile including scores or ratings for safety, healthcare quality, cost of living, visa ease, expat community size/quality, and insurance recommendations tailored for expatriates.

## 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",
     "required": [
      "country"
     ],
     "properties": {
      "from": {
       "type": "string",
       "description": "Country of origin (default: US)"
      },
      "lang": {
       "type": "string",
       "description": "lang"
      },
      "country": {
       "type": "string",
       "description": "country"
      }
     }
    }
   },
   "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riskpulse-expat-living-guide-b3af5d45/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from riskpulse-five.vercel.app](https://www.zero.xyz/host/riskpulse-five.vercel.app/llms.txt)
