# Invoket Legal Article Lookup

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

Fetches the full text and metadata of a specific legal article by code, article number, and/or date from a French legal database.

## Facts

- Endpoint: POST https://api.invoket.com/legal/article
- Price: $0.001/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-lookup-493d7e4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XaFzWeQtNXRxfawQUSOmt

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-lookup-493d7e4d -d '<json body>'
```

Example prompt: Can you look up the full text of article L2141-3 from the French Labor Code (code = LEGITEXT000006072050) as of today?

## When to prefer this

Use this endpoint when you need to programmatically retrieve the exact text of a specific French legal article by its code reference, article number, and optional date — especially in agentic workflows where no account or API key setup is desired and payment is handled via x402 stablecoin per call.

## Known failure modes

- Invalid or unknown article code returns empty or error response
- Article not found for the given date returns no data
- Malformed date string causes query failure
- Payment failure via x402 prevents access (402 response)
- Coverage flag may be false, indicating partial article text

## How this service works

The checks your agent runs before it acts: verify a bank account, a phone number, a law in force, the weather or a vehicle — computed from official sources, with provenance in every response. You only pay for answers.

## Output

Returns the full text of the requested legal article along with its label, state (etat), coverage completeness flag, version start date and version ID, and provenance data including the source, freshness timestamp, and when it was fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "code",
  "date",
  "article"
 ],
 "properties": {
  "code": {
   "type": "string",
   "description": "Slug of the French code or statute, resolved against the official Légifrance LEGI consolidated dataset (e.g. code-civil). Covered corpus: 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)"
  },
  "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"
  },
  "article": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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