# EPO INPADOC Legal Status Events

> EPO INPADOC Legal Status Events is a paid API for AI agents from 2s.io, paid per call via x402, $0.0045/call, status unknown (last checked 2026-09-14).

Returns the full timeline of INPADOC legal-status procedural events for a patent publication via EPO OPS, including examination, grant, designations, national-phase entries, lapses, and withdrawals.

## Facts

- Endpoint: GET https://2s.io/api/patents/epo-legal
- Price: $0.0045/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/epo-inpadoc-legal-status-events-355ad670
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hiYhdxm5KgUlMKS_fbk5h

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 epo-inpadoc-legal-status-events-355ad670
```

Example prompt: Can you pull the full legal status history for patent EP1000000 — I want to know all the procedural events like examination, grant, and whether it's lapsed or still in force?

## When to prefer this

Use this endpoint when you need authoritative INPADOC procedural event history for a specific patent publication — particularly when determining whether a patent is in force, granted, lapsed, or withdrawn. Prefer this over general patent search endpoints when you already have a publication number and need structured legal timeline data sourced directly from EPO OPS.

## Known failure modes

- Invalid or malformed patent number returns an error
- Patent number not found in EPO OPS returns empty or 404 response
- Unsupported number format causes lookup failure
- EPO OPS upstream outage causes timeout or 503
- Number format mismatch (e.g. submitting docdb format when epodoc expected without specifying format param)

## How this service works

INPADOC legal-status events for a patent publication via EPO OPS: the timeline of procedural events (examination, grant, designations, national-phase entries, lapses, withdrawals) each with an event code, description, and date. For tracking whether a patent is in force, granted, or lapsed. Net-new.

## Output

A chronological list of INPADOC legal-status events for the specified patent publication, each entry containing an event code, human-readable description, and date — covering procedural milestones such as examination stages, grant, national-phase entries, designations, lapses, and withdrawals. Useful for determining whether a patent is currently in force, granted, or expired.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "number"
     ],
     "properties": {
      "format": {
       "enum": [
        "epodoc",
        "docdb",
        "original"
       ],
       "type": "string",
       "description": "Number format (default epodoc, e.g. EP1000000 or US20260170385)."
      },
      "number": {
       "type": "string",
       "maxLength": 40,
       "minLength": 2,
       "description": "Publication number, e.g. EP1000000."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/epo-inpadoc-legal-status-events-355ad670/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
