# GlobalRules Work Week Lookup

> GlobalRules Work Week 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 standard work week structure (e.g. working days, hours) for a specified country using its ISO country code.

## Facts

- Endpoint: GET https://globalrules-api.onrender.com/api/v1/country/JP/work_week
- 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-work-week-lookup-3decc18a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WaG9wHks_vGJ8bhp55g_v

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-work-week-lookup-3decc18a
```

Example prompt: What is the standard work week in Japan — how many days and which days are considered working days?

## When to prefer this

Use this endpoint when you need a quick, authoritative single-field lookup of work week norms for a specific country without needing to scrape or interpret broader labor law documents. Ideal for HR tools, scheduling agents, and relocation workflows where only the work week fact is needed per call.

## Known failure modes

- Invalid or unsupported ISO country code returns an error or empty response
- Country not in the 106-country coverage returns a not-found error
- Network timeout if the Render-hosted server is cold-starting
- Payment failure if x402 USDC payment is not properly handled

## 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 the country code, the standard work week details for that country (such as number of working days and which days are worked), and a timestamp indicating when the data was last verified.

## 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-work-week-lookup-3decc18a/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)
