Overview

The USPTO API provides access to US patent data including full-text patents, patent grants, and trademark records. You can search patents by keyword, inventor, or filing date. It is a great resource for researchers and developers interested in intellectual property data.

Beginner Tip

Start with the Open Data Portal at developer.uspto.gov for cleaner REST endpoints. The main site URL points to documentation, so look for the PatentsView or BDSS API for programmatic access.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

Use case: Integrate usa patent api services data into web and mobile applications
USPTO data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "status": "success",
  "data": {
    "result": "Data from USPTO",
    "description": "USA patent api services",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

patent_number The unique identifier of the patent, e.g. "9876543".
patent_title Official title of the patent as filed with the USPTO.
patent_date Grant date of the patent in YYYY-MM-DD format.
inventor_last_name Last name(s) of the patent inventor(s).
assignee_organization Company or organization that owns the patent rights.

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://www.uspto.gov/learning-and-resources/open-data-and-mobility";
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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

No results returned Query syntax for patent searches can be strict; special characters in patent numbers may cause issues.
Use PatentsView query syntax (e.g., {"_text_phrase":{"patent_title":"solar"}}), URL-encode your parameters.
429 Too Many Requests The USPTO APIs enforce rate limits on free access.
Add delays between requests and cache results locally; consider applying for a higher-rate API key at developer.uspto.gov.
Empty or malformed JSON response Some USPTO endpoints return XML by default.
Add an Accept: application/json header or append &format=json to your query string.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Patent
Difficulty Beginner
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →