# GlobalRules Payment Culture Lookup

> GlobalRules Payment Culture Lookup 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 payment culture data for Singapore (SG), such as preferred payment methods, cash vs card norms, and tipping conventions.

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/SG/payment_culture
- 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-payment-culture-lookup-5e8aef7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nAYBiDiNbSeuE8HwQQJ82

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-payment-culture-lookup-5e8aef7f
```

Example prompt: What is the payment culture in Singapore — do people mostly use cash or cards, and what payment methods are commonly accepted?

## When to prefer this

Use this endpoint when you need a single, authoritative, verified data point about payment culture specifically for Singapore without needing to scrape or aggregate multiple travel or financial sources. It is ideal for lightweight, per-call lookups at $0.01 USDC where breadth of country data (106 countries, 54 fields) and verified sourcing matter. Prefer it over general web search when you need structured, machine-readable output about country-level payment norms.

## Known failure modes

- Invalid country code returns 404 or error response
- Field not available for requested country returns empty or null data
- Service downtime on Render free tier causing 502/503 errors
- Stale data if underlying sources haven't been refreshed recently
- Rate limiting or payment failure via x402 protocol results in 402 response

## 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

A JSON object containing payment culture details for Singapore, including preferred payment methods (cash vs card), digital wallet adoption, contactless payment norms, and general payment customs. Response also includes the country code and a data-updated 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-payment-culture-lookup-5e8aef7f/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)
