Google Patents search — find patents by technology, inventor or assignee with date, countr
Google Patents search — find patents by technology, inventor or assignee with date, country, legal-status and classification filters; clean JSON with titles, snippets, dates, owners, PDFs and patent IDs.
20000 (raw units)
price
8
calls / 30d
4
unique payers
2026-09-16
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": {
"q": "machine learning anomaly detection"
},
"type": "http"
},
"output": {
"example": {
"page": 1,
"queried_at": "2026-07-22T12:00:00Z",
"query": "machine learning anomaly detection",
"results": [
{
"assignee": "Pure Storage Inc",
"patent_id": "patent/US11734097B1/en",
"position": 1,
"publication_date": "2023-08-22",
"publication_number": "US11734097B1",
"title": "Machine learning-based hardware component monitoring"
}
],
"total_pages": 100,
"total_results": 125000
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"q": {
"description": "Technology, invention or prior-art query",
"maxLength": 500,
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"page": {
"type": "integer"
},
"queried_at": {
"format": "date-time",
"type": "string"
},
"query": {
"type": "string"
},
"results": {
"items": {
"properties": {
"assignee": {
"type": "string"
},
"country_status": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"cpc": {
"type": "string"
},
"cpc_description": {
"type": "string"
},
"figures": {
"items": {
"properties": {
"full_url": {
"format": "uri",
"type": "string"
},
"thumbnail_url": {
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"filing_date": {
"type": "string"
},
"grant_date": {
"type": "string"
},
"inventor": {
"type": "string"
},
"language": {
"type": "string"
},
"patent_id": {
"type": "string"
},
"patent_url": {
"format": "uri",
"type": "string"
},
"pdf_url": {
"format": "uri",
"type": "string"
},
"position": {
"type": "integer"
},
"priority_date": {
"type": "string"
},
"publication_date": {
"type": "string"
},
"publication_number": {
"type": "string"
},
"rank": {
"type": "integer"
},
"snippet": {
"type": "string"
},
"thumbnail_url": {
"format": "uri",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"position",
"patent_id",
"title"
],
"type": "object"
},
"type": "array"
},
"total_pages": {
"type": "integer"
},
"total_results": {
"type": "integer"
}
},
"required": [
"query",
"queried_at",
"page",
"total_results",
"total_pages",
"results"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"google-patents",
"patents",
"patent-search",
"intellectual-property",
"prior-art",
"inventions",
"research",
"technology",
"legal-data"
]
}
}Use it
curl
curl "https://google-patents.use.x402atlas.com/search" # -> 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/search");
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/search")
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/3125.json, and this resource appears in /discovery/resources and /discovery/search.