Google Patents Scraper avatar

Google Patents Scraper

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Google Patents Scraper

Google Patents Scraper

Scrape data from Google Patents including priority date, expiration date, title, status (e.g., pending), assignee, inventor, source url

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Sarah Kapelner

Sarah Kapelner

Maintained by Community

Actor stats

0

Bookmarked

15

Total users

2

Monthly active users

22 days ago

Last modified

Categories

Share

This Actor extracts data from Google Patents.

It is designed for scraping patent/publication numbers directly or finding patents by keyword and returning structured metadata in an Apify dataset.


What it extracts

For each patent or publication number, the Actor can extract:

  • Patent / publication number
  • Title
  • Inventor
  • Assignee
  • Legal status
  • Priority date
  • Expiration date (including adjusted expiration where available)

The fields returned are configurable via Actor input.


Input

patentNumbers or keywords

You can provide either:

  • a list of patent/publication numbers
  • one or more keyword queries that will be searched on Google Patents
  • or both together

The Actor resolves keywords to patent/publication numbers first, then fetches the same metadata fields for the resulting documents.

You provide via the Form under the Input tab a list of patent/publication numbers and/or keyword queries and specify the fields you want to fetch for each result (title, inventor, assignee, priority date, expiration date, status): Alt text

Alt text

Alternatively, you may provide JSON specifying the patent numbers, keywords, and fields:

{
"patentNumbers": [
"US3945785A",
"US9439441B1"
],
"keywords": [
"wireless charging"
],
"maxKeywordResults": 25,
"fields": [
"patent_no",
"status",
"priority_date",
"exp_date",
"title",
"inventor",
"assignee"
],
"delaySeconds": 0.5,
"timeoutSeconds": 20,
"maxRetries": 2,
"useApifyProxy": false
}

For keyword searches, the Actor derives how many Google Patents search pages to visit from maxKeywordResults and then keeps at most that many resolved patent/publication numbers per keyword. Example output is shown below: Alt text