# Strale EU Regulation Search

> Strale EU Regulation Search is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-15).

Search and filter EU regulations, directives, and decisions by keyword query, type, and year of adoption

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/eu-regulation-search
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-eu-regulation-search-378f2e0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qpk8ANJKiaBLRG9tzk5Kw

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 strale-eu-regulation-search-378f2e0d
```

Example prompt: Search EU regulations about artificial intelligence — I need to find any regulations or directives adopted in 2024 on that topic.

## When to prefer this

Use this endpoint when you need to discover or enumerate EU legal instruments (regulations, directives, decisions) by topic, year, or type — especially for compliance research, legal audits, or regulatory landscape mapping across 27 EU member states. Prefer this over generic web search when you need structured, curated EU legislative data with an audit trail.

## Known failure modes

- No results found for the given query keywords — try broader or alternative terms
- Invalid 'type' filter value — must be one of: regulation, directive, or decision
- Invalid 'year' format — must be a 4-digit year string such as '2024'
- Missing required 'query' parameter — search topic must be provided
- Network or upstream data source unavailability returns a 5xx error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a list of matching EU legal instruments (regulations, directives, or decisions) including titles, types, adoption years, and summaries, filtered by the provided keywords, type, and/or year. Each call includes a cryptographic audit record.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "type": {
       "type": "string",
       "description": "Optional filter — regulation, directive, or decision"
      },
      "year": {
       "type": "string",
       "description": "Optional 4-digit year of adoption (e.g. \"2024\")"
      },
      "query": {
       "type": "string",
       "description": "Search topic or keywords (e.g. \"artificial intelligence\", \"data protection\")"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-eu-regulation-search-378f2e0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
