Overview
The European Patent Office (EPO) Open Patent Services (OPS) API provides access to millions of European patent documents, bibliographic data, and legal status information. It uses OAuth 2.0 for authentication — you register for a free consumer key and secret, then exchange them for a bearer token. Beginners should start with the bibliographic data endpoint to retrieve patent titles and abstracts.
Beginner Tip
Register for a free OPS account at developers.epo.org to get your consumer key and secret. The token endpoint is https://ops.epo.org/3.2/auth/accesstoken — use HTTP Basic Auth with your key:secret to obtain a bearer token valid for 20 minutes.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from EPO",
"description": "European patent search system api",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
access_token Bearer token to include as Authorization: Bearer <token> in subsequent API requests token_type Always "Bearer" — the token type used for API authorization headers expires_in Token lifetime in seconds (typically 1200 = 20 minutes); re-authenticate before expiry bibliographic-data Contains patent title, abstract, inventors, applicants, and publication date when querying patent data endpoints publication-reference Structured patent number with country, document number, and kind code identifying the specific document version Implementation Example
const url = "https://developers.epo.org/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Explore More
Similar APIs
View All →PatentsView
⭐ Beginner's PickPatentsView is a free US patent data API from the USPTO that lets you search, filter, and analyze millions of US patents and inventor records without an API key.
TIPO
The TIPO (Taiwan Intellectual Property Office) API provides access to Taiwan's patent search system, allowing you to retrieve patent data, search by keyword, and look up inventor or applicant information for Taiwanese patents.
USPTO
The USPTO API provides access to US patent data including full-text patents, patent grants, and trademark records.