# EPO Patent Bibliographic Record Lookup

> EPO Patent Bibliographic Record Lookup 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).

Retrieves bibliographic metadata for a patent publication via EPO OPS, including titles in multiple languages, applicants, inventors, IPC classifications, application number, and abstract.

## Facts

- Endpoint: GET https://2s.io/api/patents/epo-biblio
- 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-patent-bibliographic-record-lookup-bb4b3a9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Na7L5lcCausOKPCus2ZZm

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-patent-bibliographic-record-lookup-bb4b3a9d
```

Example prompt: Pull the bibliographic record for patent EP1000000 — I need the title, inventors, applicants, IPC classifications, and abstract.

## When to prefer this

Use this endpoint when you need structured bibliographic metadata (title, inventors, applicants, IPC codes, abstract) for a specific patent by its publication number. Ideal for worldwide patent coverage including both EP and US patents. Prefer over full-text patent retrieval when bibliographic summary is sufficient. Best when you already know the publication number.

## Known failure modes

- Invalid or malformed publication number returns an error
- Unrecognized number format causes lookup failure
- Patent publication not found in EPO OPS database returns empty or 404 response
- Rate limiting or payment failure returns 402 or 429
- Unsupported format enum value causes validation error

## How this service works

Bibliographic record for a patent publication via EPO OPS: invention titles (multiple languages), applicants, inventors, IPC classifications, application number, and the abstract. Worldwide coverage by publication number (e.g. EP1000000, US6093011). Net-new vs US-only patents.detail.

## Output

Returns structured bibliographic data for the requested patent publication: invention title in one or more languages, applicant and inventor names, IPC classification codes, application number, and the patent abstract. Covers patents worldwide by publication number (e.g. EP or US format).

## 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 or US6093011."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/epo-patent-bibliographic-record-lookup-bb4b3a9d/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)
