# GlobalRules Road Rules Lookup

> GlobalRules Road Rules 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 the road rules and driving regulations for Australia (AU) as a single, verified fact field.

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/AU/road_rules
- 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-road-rules-lookup-c85ca232
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r1T0YpM2k6zVH-VDh0s8D

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-road-rules-lookup-c85ca232
```

Example prompt: What are the road rules for driving in Australia? I need to know the key regulations like which side of the road they drive on and any important driving laws.

## When to prefer this

Choose this endpoint when you need a single, specific road rules fact for Australia (AU) in a lightweight, pay-per-call model. It is ideal for travel planning agents, compliance tools, or any workflow that needs verified country-level regulatory data without subscribing to a full country-data platform. Best suited for narrow, one-field queries rather than pulling all 54 fields at once.

## Known failure modes

- Country code not found or unsupported (only 106 countries covered)
- Field not available for the requested country
- Service unavailable on Render.com free tier (cold start delays)
- Payment failure via x402 protocol (insufficient USDC balance)
- Rate limiting or quota exceeded

## 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 road rules field for Australia, including the country code and a last-updated timestamp. The road_rules field typically covers which side of the road vehicles drive on, speed limits, key traffic laws, and any notable driving regulations specific to Australia.

## 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-road-rules-lookup-c85ca232/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)
