Google Patents details — retrieve one patent by patent_id with abstract, claims, inventors
Google Patents details — retrieve one patent by patent_id with abstract, claims, inventors, assignees, dates, classifications, family applications, images and PDF as clean JSON.
20000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
updated
Provider
google-patents.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "search",
"info": {
"input": {
"method": "GET",
"queryParams": {
"patent_id": "patent/US11734097B1/en"
},
"type": "http"
},
"output": {
"example": {
"patent": {
"abstract": "A method for identifying anomalies in hardware component data.",
"assignees": [
"Pure Storage Inc"
],
"claims": [
"1. A method comprising identifying an anomaly..."
],
"classifications": [
{
"code": "G06F11/079",
"description": "Root cause analysis"
}
],
"country": "United States",
"images": [],
"inventors": [
{
"name": "Christopher Golden"
}
],
"patent_id": "patent/US11734097B1/en",
"publication_number": "US11734097B1",
"title": "Machine learning-based hardware component monitoring",
"worldwide_applications": []
},
"queried_at": "2026-07-22T12:00:00Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"patent_id": {
"description": "Patent id returned by /google-patents/search",
"maxLength": 100,
"pattern": "^patent/[A-Za-z0-9.-]+(?:/[A-Za-z]{2})?$",
"type": "string"
}
},
"required": [
"patent_id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"patent": {
"properties": {
"abstract": {
"type": "string"
},
"application_number": {
"type": "string"
},
"assignees": {
"items": {
"type": "string"
},
"type": "array"
},
"claims": {
"items": {
"type": "string"
},
"type": "array"
},
"classifications": {
"items": {
"properties": {
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"first_code": {
"type": "boolean"
},
"is_cpc": {
"type": "boolean"
},
"leaf": {
"type": "boolean"
}
},
"required": [
"code"
],
"type": "object"
},
"type": "array"
},
"country": {
"type": "string"
},
"family_id": {
"type": "string"
},
"filing_date": {
"type": "string"
},
"images": {
"items": {
"type": "string"
},
"type": "array"
},
"inventors": {
"items": {
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"patent_id": {
"type": "string"
},
"pdf_url": {
"format": "uri",
"type": "string"
},
"prior_art_date": {
"type": "string"
},
"prior_art_keywords": {
"items": {
"type": "string"
},
"type": "array"
},
"priority_date": {
"type": "string"
},
"publication_date": {
"type": "string"
},
"publication_number": {
"type": "string"
},
"title": {
"type": "string"
},
"worldwide_applications": {
"items": {
"properties": {
"application_number": {
"type": "string"
},
"country_code": {
"type": "string"
},
"document_id": {
"type": "string"
},
"filing_date": {
"type": "string"
},
"legal_status": {
"type": "string"
},
"this_application": {
"type": "boolean"
},
"year": {
"type": "string"
}
},
"required": [
"year"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"patent_id",
"title",
"inventors",
"assignees",
"claims",
"classifications",
"worldwide_applications",
"images"
],
"type": "object"
},
"queried_at": {
"format": "date-time",
"type": "string"
}
},
"required": [
"queried_at",
"patent"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"google-patents",
"patents",
"patent-details",
"intellectual-property",
"claims",
"prior-art",
"inventions",
"legal-data",
"research"
]
}
}Use it
curl
curl "https://google-patents.use.x402atlas.com/patent" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://google-patents.use.x402atlas.com/patent");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://google-patents.use.x402atlas.com/patent")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3126.json, and this resource appears in /discovery/resources and /discovery/search.