USPTO
USPTO — keyless JSON API
USPTO. USA patent api services
GET https://www.uspto.gov/data.json
{
"@type": "dcat:Catalog",
"conformsTo": "https://project-open-data.cio.gov/v1.1/schema",
"@context": "https://project-open-data.cio.gov/v1.1/schema/data.json",
"describedBy": "https://project-open-data.cio.gov/v1.1/schema/catalog.json",
"dataset": [
{
"@type": "dcat:Dataset",
"title": "Asset Inventory",
"description": "This dataset is the beginning of the U.S. Patent and Trademark Office (USPTO) Enterprise Data Inventory (EDI) and Public Data Listing (PDL) and includes all the USPTO data assets.",
"keyword": [
"asset",
"inventory"
],
"modified": "2025-08-28",
"publisher": {
"@type": "org:Organization",
"name": "U.S. Patent and Trademark Office (USPTO)",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of Commerce (DOC)",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Federal Government"
}
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Christopher Leithiser",
"hasEmail": "mailto:Chris.Leithiser@uspto.gov"
},
"mbox": "data@uspto.gov"
},
{
"@type": "dcat:Dataset",
"title": "The Artificial Intelligence Patent Dataset (AIPD) for Academia and Researchers",
"description": "Contains Artificial Intelligence Patent Landscape data classifying 13,244,037 granted patents and PGPubs published from 1976 through 2023 in eight AI component technologies using state-of-the art machine learning based models.",
"keyword": [
"ai",
"tsv"
],
"modified": "2025-08-28",
"publisher": {
"@type": "org:Organization",
"name": "Office of the Chief Economist (OCE)",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Patent and Trademark Office (USPTO)",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of Commerce (DOC)",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Federal Government"
}
}
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Nicholas Pairolero",
"hasEmail": "mailto:Nicholas.Pairolero@uspto.gov"
},
"mbox": "EconomicsData@uspto.gov"
}
]
}curl "https://www.uspto.gov/data.json"const res = await fetch("https://www.uspto.gov/data.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.uspto.gov/data.json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/data.jsonPROBEDUSPTO — keyless JSON API
/data.json?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
USPTO: common questions
Is USPTO free to use?
Yes — USPTO is a free science & space API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does USPTO need an API key?
No — USPTO needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call USPTO from the browser?
Not directly — USPTO doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is USPTO up right now?
As of our last scheduled check, USPTO is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.