# TouLaw Global Legislation Search

> TouLaw Global Legislation Search is a paid API for AI agents from law-mcp.toulaw.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Searches across Japanese, US, UK, and EU legislation databases using a keyword query and returns matching legal documents or statutes

## Facts

- Endpoint: GET https://law-mcp.toulaw.workers.dev/api/v1/search
- 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/law-mcp-toulaw-workers-dev-101f4331
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9als3uiF-BzCZNKCAiUMT

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 law-mcp-toulaw-workers-dev-101f4331
```

Example prompt: Search for laws and regulations about 'digital assets' across all jurisdictions — JP, US, UK, and EU — and give me up to 15 results per jurisdiction.

## When to prefer this

Use this endpoint when you need to search legal texts and legislation across multiple major jurisdictions (Japan, US, UK, EU) simultaneously with a single keyword query. It is ideal for cross-jurisdictional regulatory research, compliance checks, or identifying which countries have laws touching on a specific topic. Prefer this over generic web search when you specifically need structured legislative database results rather than news articles or legal commentary.

## Known failure modes

- Missing required 'q' query parameter returns a validation error
- Invalid 'country' enum value (not one of all/jp/us/uk/eu) causes a bad request error
- Exceeding limit of 20 results per jurisdiction is clamped or returns an error
- Payment failure (x402) prevents access to results
- No matching legislation found returns an empty result set
- Timeout on upstream legislation database may return partial or no results

## How this service works

Global law search across JP/US/UK/EU legislation databases

## Output

Returns matching legislation records from the queried jurisdictions (Japan, US, UK, EU, or all), including statute names, relevant excerpts or references, and jurisdiction labels, limited to the requested number of results per jurisdiction.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "artificial intelligence",
   "limit": 10,
   "country": "all"
  }
 }
}
```

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search keyword (e.g. 'digital asset', 'securities regulation')"
      },
      "limit": {
       "type": "number",
       "description": "Results per jurisdiction (default: 10, max: 20)"
      },
      "country": {
       "enum": [
        "all",
        "jp",
        "us",
        "uk",
        "eu"
       ],
       "type": "string",
       "description": "Target jurisdiction (default: all)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/law-mcp-toulaw-workers-dev-101f4331/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from law-mcp.toulaw.workers.dev](https://www.zero.xyz/host/law-mcp.toulaw.workers.dev/llms.txt)
