# Invoket EU AI Act Article Lookup

> Invoket EU AI Act Article Lookup is a paid API for AI agents from api.invoket.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Retrieves the full text of a specific article from the EU AI Act regulation by CELEX number, article identifier, and optional date.

## Facts

- Endpoint: GET https://api.invoket.com/legal/eu-act
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/invoket-eu-ai-act-article-lookup-15a15c65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DfwZ_i6i4J2GhWchzgS8_

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 invoket-eu-ai-act-article-lookup-15a15c65
```

Example prompt: Can you pull the full text of Article 13 of the EU AI Act — the CELEX number is 32024R1689 — and tell me what it says and whether coverage is complete?

## When to prefer this

Use this endpoint when you need the authoritative, versioned text of a specific EU AI Act article identified by CELEX number and article ID, especially when provenance and freshness metadata matter for compliance or legal research workflows. Prefer this over generic web scraping when you need structured, machine-readable legal text with version tracking.

## Known failure modes

- Article not found for the given CELEX/article combination — returns an error or empty data object
- Invalid date format causes a failed lookup
- CELEX number does not correspond to the EU AI Act — may return unexpected or empty results
- Coverage flag may be false if article text is incomplete or partially available
- Payment not settled (x402 flow) — call does not proceed without USDC payment

## How this service works

Before your agent advises on EU compliance or cites EU law: check an act or article is in force at a given date, by CELEX or ELI identifier — consolidated text, status, validity dates and the staggered date it becomes APPLICABLE (in force is not the same thing: the AI Act is in force since 2024-08-01, but its Article 50 only applies from 2026-08-02), from the official EUR-Lex dataset. Covers key EU digital and financial acts (GDPR, DSA, AI Act, MiCA and more).

## Output

Returns the full article text, its label, CELEX identifier, legal state (etat), version details (version ID and start date), a flag indicating whether coverage of the article is complete, and provenance metadata including the data source, freshness kind, and when it was fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "date",
  "celex",
  "article"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "Date at which the law is read, strict ISO calendar format YYYY-MM-DD (zero-padded: 2026-07-05, not 2026-7-5); optional, defaults to today"
  },
  "celex": {
   "type": "string",
   "description": "CELEX identifier of the EU act (an ELI is accepted via eli= as a fallback), resolved against the official EUR-Lex consolidated dataset. Covered acts: GDPR, eIDAS, the e-Commerce Directive, the DSM copyright Directive, DSA, DMA, AI Act, MiCA and NIS2. Historical depth VARIES per act and is reported per response in coverage_window: some acts are only covered from their first published consolidation (the e-Commerce Directive, in force since 2000, is only queryable from 2024-02-17)"
  },
  "article": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/invoket-eu-ai-act-article-lookup-15a15c65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.invoket.com](https://www.zero.xyz/host/api.invoket.com/llms.txt)
