# GlobalRules Business Ready Score by Country

> GlobalRules Business Ready Score 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-14).

Returns the business readiness score for a specific country (Singapore, SG), reflecting ease of doing business based on verified regulatory and economic factors.

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/SG/business_ready_score
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/globalrules-business-ready-score-by-country-d475391b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QPQT1zpdt_tJfXaPg_PrX

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-business-ready-score-by-country-d475391b
```

Example prompt: What is Singapore's business ready score according to GlobalRules — I want to know how favorable the environment is for setting up a business there.

## When to prefer this

Choose this endpoint when you need a single, verified business readiness score for Singapore (or another supported country) without needing to aggregate multiple data points yourself. It is ideal for agents building country comparison dashboards, due diligence reports, or market entry decision tools where a normalized score per country is sufficient. Prefer it over scraping government sources or World Bank APIs when you need a simple, pay-per-call, low-latency fact lookup covering 106 countries.

## Known failure modes

- Invalid or unsupported country code returns an error or empty result
- Field not available for the requested country returns null or 404
- Service unavailable on Render free-tier cold start causes timeout
- Stale data if the verified source has not been refreshed 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 containing the country code (SG), the business ready score value for Singapore, and the date the data was last updated. The score reflects verified regulatory, economic, and operational factors that indicate how business-friendly the country is.

## 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-business-ready-score-by-country-d475391b/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)
