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

Pricing

One price, in dollars

Providers
Meerkat1 served100.00% uptime4969ms p50$0.99/1k reqflat

Try it

Make your first request

Open in
Get a free key
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 30d
POST /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"}'
FieldTypeExample value
Request body
querystring"wireless charging"The Google Patents search query.
Response
dataobjectResult payload, or null when nothing was found.
data.querystringThe query that was searched.
data.resultsobject[]Patent result records.
data.results[].assigneestringPatent assignee.
data.results[].filedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.results[].grantedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.results[].imagestringFirst patent figure thumbnail image URL.
data.results[].inventorstringNamed inventor or inventors.
data.results[].linkstringURL to the patent. Populated whenever the provider has data for the entity.
data.results[].pdfUrlstringURL to an available patent PDF.
data.results[].priorityUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.results[].publicationNumberstringPatent publication number (e.g. US11303135B2). Populated whenever the provider has data for the entity.
data.results[].publishedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.results[].snippetstringShort patent description snippet.
data.results[].titlestringPatent title. Populated whenever the provider has data for the entity.
foundbooleanTrue when at least one patent result was returned.
Price
Price per requestUSD$0.00099
Price /1k reqUSD$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.