# GlobalRules Tap Water Safety by Country

> GlobalRules Tap Water Safety by Country is a paid API for AI agents from globalrules-api.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns tap water safety information (drinkable or not) for a specified country

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/FR/tap_water
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/globalrules-tap-water-safety-by-country-7f7ed7c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0hmssAJMqZ9LRhUOmwOCe

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 globalrules-tap-water-safety-by-country-7f7ed7c4
```

Example prompt: Is tap water safe to drink in France? I want to know if I need to buy bottled water or if it's fine to drink from the tap.

## When to prefer this

Choose this endpoint when you need a quick, low-cost, single-field fact about tap water safety for a specific country. It is ideal for travel planning agents, digital nomad tools, or any workflow that needs a simple drinkability flag per country without scraping travel blogs or government health sites.

## Known failure modes

- Invalid or unsupported country code returns an error or empty response
- Country not among the 106 supported countries returns no data
- Service downtime on Render hosting may cause temporary unavailability
- Stale data if underlying sources haven't been re-verified recently

## How this service works

One specific fact for one country: VAT/GST rate, public holidays by country, visa requirements for travelers, tipping customs, power plug type, minimum wage, corporate tax, digital nomad visa, customs duty-free allowance and more. 138 countries, 55 fields, verified sources. Example: /api/v1/country/JP/vat

## Output

Returns a JSON object with the country code, tap water safety status (e.g. safe/unsafe/generally safe), and a last-updated date indicating when the data was last verified.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string"
      },
      "updated": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/globalrules-tap-water-safety-by-country-7f7ed7c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from globalrules-api.onrender.com](https://www.zero.xyz/host/globalrules-api.onrender.com/llms.txt)
