# Invoket Legal Article Batch Lookup

> Invoket Legal Article Batch 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-15).

Fetches multiple French legal articles in batch by code/identifier, returning full text, metadata, and provenance information.

## Facts

- Endpoint: POST https://api.invoket.com/legal/article/batch
- 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/invoket-legal-article-batch-lookup-4e287165
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__q4i4sVrgBJQLf57ncZcq

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-legal-article-batch-lookup-4e287165 -d '<json body>'
```

Example prompt: Can you pull the full text and current status of these three French civil code articles — L1111-1, L1111-2, and L1111-3 — all at once?

## When to prefer this

Use this endpoint when you need to retrieve the full text and metadata of multiple French legal articles in a single call, especially when working with French legislation, regulatory compliance research, or legal document analysis. Prefer this over single-article lookups when processing a list of article identifiers to minimize latency and cost. Ideal for autonomous agents that need to resolve legal references without managing API keys.

## Known failure modes

- Invalid or unrecognized article codes return empty results array with count 0
- Malformed request body results in 4xx error
- Payment failure (insufficient USDC or x402 settlement error) blocks the call
- Partial coverage indicated by coverage.complete = false for some articles
- Stale data possible if freshness.kind indicates cached result

## How this service works

Before your agent signs off a contract review or a due-diligence memo: check that up to 50 legal citations are still in force at a given date in one call — consolidated text, status and validity dates per reference, from the official LEGI (French law) and EUR-Lex (EU law) datasets. Covers 12 major French codes and statutes and key EU acts (GDPR, DSA, AI Act, MiCA and more).

## Output

Returns a list of legal article objects, each containing: article identifier, code, label, full text, state (etat), date, version info (start date and version ID), and a coverage flag indicating completeness. Also includes provenance metadata: data source, freshness kind, as-of timestamp, and fetched-at timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "refs"
 ],
 "properties": {
  "refs": {
   "type": "array",
   "description": "Array of article references, French ({ code, article, date? }) and EU ({ celex or eli, article?, date? }) mixed freely. Covered corpus — French law (Légifrance LEGI): Code civil, Code du travail, Code de commerce, Code pénal, Code de la consommation, Code général des impôts (CGI), Code de la sécurité sociale, Code monétaire et financier, Code de l'environnement, Code de la propriété intellectuelle, Code des assurances, plus the Data Protection Act (loi 78-17); EU law (EUR-Lex): GDPR, eIDAS, the e-Commerce Directive, the DSM copyright Directive, DSA, DMA, AI Act, MiCA and NIS2"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/invoket-legal-article-batch-lookup-4e287165/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)
