Google API
Google Patents API
Search Google Patents with title, patent number, inventor, assignee, key dates, and PDF link.
POST/v1/run/google.patents
Uptime
100.00%
30d · 1 call
Requests
1
30d
Response
5.1s
median · 30d
Try it
Make your first request
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
"data": {
"query": "example",
"results": [
{
"assignee": "example",
"filedUtc": 12.5,
"grantedUtc": 12.5,
"image": "https://example.com/image.jpg",
"inventor": "example",
"link": "https://example.com/page",
"pdfUrl": "https://example.com/page",
"priorityUtc": 12.5,
"publicationNumber": "example",
"publishedUtc": 12.5,
"snippet": "A short example description of this item.",
"title": "Example title"
}
]
},
"found": true
}Response interface
interface GooglePatentsResponse {
data: {
query: string;
results: {
assignee?: string;
filedUtc?: number;
grantedUtc?: number;
image?: string;
inventor?: string;
link: string;
pdfUrl?: string;
priorityUtc?: number;
publicationNumber: string;
publishedUtc?: number;
snippet?: string;
title: string;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dPOST /v1/run/google.patents
curl -X POST https://api.getanyapi.com/v1/run/google.patents \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"wireless charging"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "wireless charging"The Google Patents search query. |
| Response | ||
| data | object | Result payload, or null when nothing was found. |
| data.query | string | The query that was searched. |
| data.results | object[] | Patent result records. |
| data.results[].assignee | string | Patent assignee. |
| data.results[].filedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.results[].grantedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.results[].image | string | First patent figure thumbnail image URL. |
| data.results[].inventor | string | Named inventor or inventors. |
| data.results[].link | string | URL to the patent. Populated whenever the provider has data for the entity. |
| data.results[].pdfUrl | string | URL to an available patent PDF. |
| data.results[].priorityUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.results[].publicationNumber | string | Patent publication number (e.g. US11303135B2). Populated whenever the provider has data for the entity. |
| data.results[].publishedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.results[].snippet | string | Short patent description snippet. |
| data.results[].title | string | Patent title. Populated whenever the provider has data for the entity. |
| found | boolean | True when at least one patent result was returned. |
| Price | ||
| Price per request | USD | $0.00099 |
| Price /1k req | USD | $0.99 |
FAQ
About the Google Patents API
The AnyAPI Google Patents API returns Google patents data as normalized JSON from one POST call to /v1/run/google.patents. Search Google Patents with title, patent number, inventor, assignee, key dates, and PDF link. AnyAPI returns one normalized schema whichever source serves it. It costs from $0.99 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Google patents calls through AnyAPI succeeded, with a median response time of 5.1 seconds across 1 measured calls.
It costs from $0.99 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.
Search Google Patents with title, patent number, inventor, assignee, key dates, and PDF link. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.
Over the last 30 days, 100.0% of Google patents calls through AnyAPI succeeded, with a median response time of 5.1 seconds across 1 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.