Retrieving digital assets...
Scrapes patent data from Google Patents including title, patent number, inventor, assignee, filing/publication dates, abstract, link and citations.
99%
30s
500+
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | String | Yes | "artificial intelligence" | Search query to use on Google Patents |
maxItems | Integer | No | 50 | Maximum number of patent results to scrape (1–500) |
country | String | No | — | Filter by country code (e.g., US, EP, WO, CN, JP) |
dateFrom | String | No | — | Filter patents filed on or after this date (YYYYMMDD format) |
dateTo | String | No | — | Filter patents filed on or before this date (YYYYMMDD format) |
proxyConfiguration | Object | No | Apify Proxy | Proxy settings for the scraper |
{
"query": "electric vehicle battery technology",
"maxItems": 100,
"country": "US",
"dateFrom": "20200101",
"dateTo": "20241231",
"proxyConfiguration": {
"useApifyProxy": true
}
}
The scraper outputs structured JSON data for each patent result found on Google Patents.
| Field | Type | Description |
|---|---|---|
position | Integer | Result position in search results |
query | String | The search query used |
title | String | Patent title |
patentNumber | String | Patent or publication number |
inventor | String | Patent inventor(s) |
assignee | String | Patent assignee or owner |
filingDate | String | Date the patent was filed |
publicationDate | String | Date the patent was published |
abstract | String | Patent abstract text |
link | String | URL to the patent on Google Patents |
citations | Array | List of cited patents |
scrapedAt | String | ISO timestamp of when the data was scraped |
{
"position": 1,
"query": "electric vehicle battery technology",
"title": "Solid-state electrolyte for lithium-ion batteries",
"patentNumber": "US11234567B2",
"inventor": "John Doe, Jane Smith",
"assignee": "Tesla, Inc.",
"filingDate": "2021-03-15",
"publicationDate": "2023-07-20",
"abstract": "A solid-state electrolyte composition comprising lithium phosphorus oxynitride for use in high-energy-density lithium-ion batteries...",
"link": "https://patents.google.com/patent/US11234567B2",
"citations": ["US10987654B1", "US9876543B2"],
"scrapedAt": "2025-01-15T10:30:00.000Z"
}
Explore more automation tools and scrapers to supercharge your data acquisition workflow.