Scrapingdog

Google Patent Details API

The Google Patent Details API retrieves detailed information about a specific patent including title, inventors, assignees, filing dates, and prior art keywords. Costs 5 API credits per request.

Endpoint: https://api.scrapingdog.com/google_patents/details

API Parameters

πŸ”‘

Authentication

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
πŸ”—

Request Parameters

  • patent_id Required
    The patent ID of the patent (e.g., US11734097B1).

    Type: String
🌍

Localization

  • language Optional
    Language of the results. Possible Values - en, es, fr, de, etc. For a complete list of supported languages, see the Google Language Page.

    Default Value - en

    Type: String
βš™

️ Scrapingdog Options

  • html Optional
    This will return the full HTML of the Google page.

    Default Value - false

    Type: Boolean

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_patents/details?api_key=APIKEY&patent_id=US11734097B1"
API Response
{
  "title": "Machine learning-based hardware component monitoring",
  "type": "patent",
  "pdf": "https://patentimages.storage.googleapis.com/00/a7/59/6750cd74efdf32/US11734097.pdf",
  "publication_number": "US11734097B1",
  "country": "United States",
  "prior_art_keywords": [
    "storage",
    "data",
    "hardware component",
    "anomaly",
    "monitoring system"
  ],
  "prior_art_date": "2018-01-18",
  "application_number": "US17/160,053",
  "inventors": [
    {
      "name": "Christopher Golden",
      "link": "https://patents.google.com/?inventor=Christopher+Golden",
      "scrapingdog_link": "https://api.scrapingdog.com/google_patents?api_key=APIKEY&inventor=Christopher+Golden"
    },
    {
      "name": "Emily Watkins",
      "link": "https://patents.google.com/?inventor=Emily+Watkins",
      "scrapingdog_link": "https://api.scrapingdog.com/google_patents?api_key=APIKEY&inventor=Emily+Watkins"
    }
  ],
  "assignees": ["Pure Storage Inc"],
  "priority_date": "2018-01-18",
  "filing_date": "2021-01-27",
  "publication_date": "2021-01-27",
  "worldwide_applications": {}
}