PatentsView API
Overview
PatentsView 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. It is excellent for researchers and beginners wanting to explore innovation trends, find inventors, or look up assignee information. The API supports powerful field filtering and returns clean JSON data.
Beginner Tip
Use the "q" parameter for filtering and "f" to select which fields to return — this keeps responses small and fast. For example, you can search by patent type and retrieve only the fields you care about using the field selection syntax documented at patentsview.org.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from PatentsView",
"description": "API is intended to explore and visualize trends/patterns across the US innovation landscape",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
patents List of patent records matching the query, each containing the requested fields patent_number Unique US patent number (e.g., "10000000") identifying the patent document patent_title Official title of the patent as granted by the USPTO patent_date Grant date of the patent in YYYY-MM-DD format patent_type Type of patent: utility, design, or plant total_patent_count Total number of patents matching the query (useful for pagination calculations) Implementation Example
const url = "https://patentsview.org/apis/purpose";
const response = await fetch(url);
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
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Explore More
Similar APIs
View All →USPTO
The USPTO API provides access to US patent data including full-text patents, patent grants, and trademark records.
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.
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.