# GlobalRules Country Full Profile

> GlobalRules Country Full Profile is a paid API for AI agents from globalrules-api.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns all 54 country fact topics (VAT/GST, public holidays, tipping, power plugs, emergency numbers, timezone, minimum wage, visa rules, customs allowances, corporate tax, and more) for a single country in one JSON response.

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/DE
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/globalrules-country-full-profile-b220998c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Za2z4gdZmFK0pRBOP9Tcy

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-country-full-profile-b220998c
```

Example prompt: Give me the full GlobalRules country profile for Japan — I need VAT rates, 2026 public holidays, tipping customs, power plug types, emergency numbers, timezone, minimum wage, visa rules, customs allowances, and corporate tax all in one go.

## When to prefer this

Use this endpoint when you need comprehensive multi-topic country data in a single call and want to avoid making many separate API requests. It is ideal when building travel briefings, e-commerce compliance checks, HR onboarding tools, or tax configuration workflows where you need several different fact categories simultaneously for one country. Prefer the single-fact sibling endpoints when you only need one specific field (e.g. just VAT rate) and want to minimize cost.

## Known failure modes

- Unsupported country code returns an error or empty result — only 98 countries are covered
- Invalid or malformed ISO alpha-2 code (e.g. a 3-letter code or typo) returns a 4xx error
- Render.com cold-start latency may cause slow first response after idle period
- Data may be outdated for rapidly changing regulations; check the 'updated' timestamp field

## How this service works

Verified practical facts for one country in one JSON call: VAT/GST rates, 2026 public holidays, tipping, power plugs and voltage, emergency numbers, timezone, minimum wage, visa rules, customs allowances and corporate tax (54 topics, 106 countries). For AI travel agents, tax tools and e-commerce. Pass an ISO alpha-2 code, e.g. /api/v1/country/JP for Japan.

## Output

A single JSON object containing up to 54 structured fact topics for the requested country, including VAT/GST rates, 2026 public holidays list, tipping conventions, power plug standards and voltage, emergency contact numbers, local timezone, minimum wage, visa entry rules, customs duty allowances, and corporate tax rate, along with country name and a data freshness timestamp.

## 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-country-full-profile-b220998c/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)
