# GlobalRules Minimum Wage Lookup by Country

> GlobalRules Minimum Wage Lookup 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 current minimum wage data for a specified country using its ISO country code.

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/DE/minimum_wage
- 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-minimum-wage-lookup-by-country-c3174cef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8qYs7Lc9sEuxKL-rYOMle

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-minimum-wage-lookup-by-country-c3174cef
```

Example prompt: What is the current minimum wage in Germany? Just give me the verified figure with the source date.

## When to prefer this

Choose this endpoint when you need a single, verified minimum wage figure for one specific country at minimal cost ($0.01 per call). It is ideal for spot-checks, compliance validation, or enriching a record with labor law data without pulling the full country profile. For comparing minimum wages across all 98 countries at once, use the cross-country comparison sibling endpoint instead.

## Known failure modes

- Unsupported or invalid country code returns an error — only 98 countries are covered
- Country has no statutory minimum wage (e.g. some Nordic countries rely on collective bargaining) may return null or a note
- Stale data if the verified source hasn't been refreshed after a recent legislative change
- Network timeout or server error from the Render-hosted service during high load

## 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, the minimum wage value (with currency and period details), and the date the data was last verified/updated.

## 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-minimum-wage-lookup-by-country-c3174cef/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)
