Google Patent Details API
Using Google Patent Details API you can scrape patent details without worrying about proxy rotation and data parsing. Each successful request will cost you 5 API credits
Each successful request will cost you 5 API credits.
You have to send a GET request to http://api.scrapingdog.com/google_patents/details with the below-given parameters.
Parameters
Scrapingdog Parameters
api_key
required
Your personal API key. Available on your dashboard Type: String
html
This will return the full HTML of the Google page.
Default Value - false
Type - Boolean
Search Query
patent_id required
The patent ID of the patent. Type: String
Localization
language
Language of the results. Possible Values - en, es, fr, de, etc. Visit Google's languages page for a complete list of supported countries.
Default Value - en
Type - String
API Example
curl "https://api.scrapingdog.com/google_patents/details/?api_key=5eaa61a6e562fc52fe763tr516e4653&patent_id=US11734097B1"import requests
api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/google_patents/details"
params = {
"api_key": api_key,
"patent_id": "US11734097B1",
}
response = requests.get(url, params=params)
if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Request failed with status code: {response.status_code}")
const axios = require('axios');
const api_key = '5eaa61a6e562fc52fe763tr516e4653';
const url = 'https://api.scrapingdog.com/google_patents/details/';
const params = {
api_key: api_key,
patent_id: 'US11734097B1'
};
axios
.get(url, { params: params })
.then(function (response) {
if (response.status === 200) {
const data = response.data;
console.log(data)
} else {
console.log('Request failed with status code: ' + response.status);
}
})
.catch(function (error) {
console.error('Error making the request: ' + error.message);
});
Response
{
"title": "Machine learning-based hardware component monitoring \n ",
"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": [
"\n Pure Storage Inc\n "
],
"priority_date": "2018-01-18",
"filing_date": "2021-01-27",
"publication_date": "2021-01-27",
"worldwide_applications": {
...
}
........... Last updated