# RiskPulse Digital Nomad Score

> RiskPulse Digital Nomad Score 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 7-dimension digital nomad suitability ranking for a country, covering internet, visa, cost, safety, healthcare, community, and quality of life.

## Facts

- Endpoint: GET https://riskpulse-five.vercel.app/api/risk/nomad
- 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-digital-nomad-score-891c3ace
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nY7Sb2SGdDgzmKxFCvR_p

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-digital-nomad-score-891c3ace
```

Example prompt: Give me the full digital nomad score for Portugal — I want to see all 7 dimensions including internet, visa, cost, safety, healthcare, community, and quality of life.

## When to prefer this

Use this endpoint when you need a multi-dimensional nomad suitability profile for a specific country, especially when the user cares about comparing internet, visa, cost, safety, healthcare, community, and quality of life as separate scored dimensions. Prefer over a generic travel safety or expat guide endpoint when the audience is specifically remote workers or digital nomads making relocation decisions.

## Known failure modes

- Unknown or misspelled country name returns 400 or empty result
- Country not in database returns 404
- Payment not processed results in 402 requiring x402 payment
- Rate limiting if too many requests in quick succession

## How this service works

Digital nomad score, remote-work relocation ranking, best country/city for nomads worldwide. Returns a 7-dimension ranking for any country or city: internet, visa, cost of living, safety, healthcare, community, and quality of life.

## Output

A structured 7-dimension nomad suitability ranking for the requested country, with individual scores for internet quality, visa accessibility, cost of living, safety, healthcare, community strength, and overall quality of life, plus a composite nomad score.

## 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": {
      "city": {
       "type": "string",
       "description": "City"
      },
      "lang": {
       "type": "string",
       "description": "Response language (default en)"
      },
      "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-digital-nomad-score-891c3ace/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)
