Overview
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. Authentication uses an API key that you request from TIPO's open data platform. It is a good starting point for researchers interested in Asia-Pacific patent landscapes.
Beginner Tip
Register for an API key at cloud.tipo.gov.tw and pass it as the "apikey" query parameter in every request. Start by querying a simple keyword search on patent titles to understand the response structure before building complex filters.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from TIPO",
"description": "Taiwan patent search system api",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
applyNo Taiwan patent application number assigned when the patent was filed publicNo Publication number assigned when the patent application was published title Patent title, typically in Traditional Chinese applicant Name of the person or organization that applied for the patent applyDate Date the patent application was filed (YYYY-MM-DD format) ipcCode International Patent Classification code categorizing the technology area of the patent Implementation Example
const url = "https://tiponet.tipo.gov.tw/Gazette/OpenData/OD/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "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 →EPO
The European Patent Office (EPO) Open Patent Services (OPS) API provides access to millions of European patent documents, bibliographic data, and legal status information.
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.
USPTO
The USPTO API provides access to US patent data including full-text patents, patent grants, and trademark records.