Google Patents Scraper avatar

Google Patents Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Google Patents Scraper

Google Patents Scraper

Scrapes patent data from Google Patents including title, patent number, inventor, assignee, filing/publication dates, abstract, link and citations.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Features

  • Patent Data: Extracts comprehensive patent records from Google Patents including title, patent number, and abstract
  • Inventor & Assignee: Captures the names of inventors and patent assignees/owners
  • Filing & Publication Dates: Records both the filing date and official publication date for each patent
  • Patent Citations: Collects lists of patents cited by each result
  • Country Filtering: Filter patents by country code (US, EP, WO, CN, JP, KR, DE, GB, etc.)
  • Date Range Filtering: Narrow results to patents filed within a specific date range
  • Direct Patent Links: Extracts links to full patent documents on Google Patents
  • Proxy Support: Built-in Apify Proxy support for reliable patent search access

Input Parameters

ParameterTypeRequiredDefaultDescription
queryStringYes"artificial intelligence"Search query to use on Google Patents
maxItemsIntegerNo50Maximum number of patent results to scrape (1–500)
countryStringNoFilter by country code (e.g., US, EP, WO, CN, JP)
dateFromStringNoFilter patents filed on or after this date (YYYYMMDD format)
dateToStringNoFilter patents filed on or before this date (YYYYMMDD format)
proxyConfigurationObjectNoApify ProxyProxy settings for the scraper

Input Schema Example

{
"query": "electric vehicle battery technology",
"maxItems": 100,
"country": "US",
"dateFrom": "20200101",
"dateTo": "20241231",
"proxyConfiguration": {
"useApifyProxy": true
}
}

Output Schema

The scraper outputs structured JSON data for each patent result found on Google Patents.

Main Fields

FieldTypeDescription
positionIntegerResult position in search results
queryStringThe search query used
titleStringPatent title
patentNumberStringPatent or publication number
inventorStringPatent inventor(s)
assigneeStringPatent assignee or owner
filingDateStringDate the patent was filed
publicationDateStringDate the patent was published
abstractStringPatent abstract text
linkStringURL to the patent on Google Patents
citationsArrayList of cited patents
scrapedAtStringISO timestamp of when the data was scraped

Patent Result Example

{
"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"
}