Google Scholar Cite API
You have to send a GET request to http://api.scrapingdog.com/google_scholar/cite with the below-given parameters.
Parameters
Parameter
Description
api_key
required
Your personal API key. Available on your dashboard Type: String
query
required
This parameter is the ID of an individual Google Scholar organic search result. You can obtain this ID from the id using our Google Scholar API.
Type - String
language
Language of the results. Possible Values - en, es, fr, de, etc.
Default Value - en
Type - String
API Example
curl "https://api.scrapingdog.com/google_scholar/cite?api_key=5eaa61a6e562fc52fe763tr516e4653&query=FDc6HiktlqEJ"import requests
api_key = "APIKEY"
url = "https://api.scrapingdog.com/google_scholar/cite"
params = {
"api_key": api_key,
"query": "physics"
}
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 = 'APIKEY
const url = 'https://api.scrapingdog.com/google_scholar/cite';
const params = {
api_key: api_key,
query: 'FDc6HiktlqEJ'
};
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
{
"citations": [
{
"title": "MLA",
"snippet": "Schwertmann, U. T. R. M., and Reginald M. Taylor. \"Iron oxides.\" Minerals in soil environments 1 (1989): 379-438."
},
{
"title": "APA",
"snippet": "Schwertmann, U. T. R. M., & Taylor, R. M. (1989). Iron oxides. Minerals in soil environments, 1, 379-438."
},
{
"title": "Chicago",
"snippet": "Schwertmann, U. T. R. M., and Reginald M. Taylor. \"Iron oxides.\" Minerals in soil environments 1 (1989): 379-438."
},
{
"title": "Harvard",
"snippet": "Schwertmann, U.T.R.M. and Taylor, R.M., 1989. Iron oxides. Minerals in soil environments, 1, pp.379-438."
},
{
"title": "Vancouver",
"snippet": "Schwertmann UT, Taylor RM. Iron oxides. Minerals in soil environments. 1989 Jan 1;1:379-438."
}
],
"links": [
{
"name": "BibTeX",
"link": "https://scholar.googleusercontent.com/scholar.bib?q=info:FDc6HiktlqEJ:scholar.google.com/&output=citation&scisdr=ClHczGghGAA:AFWwaeYAAAAAZvqd7iY3OJeBM76mazJ0K90qfXg&scisig=AFWwaeYAAAAAZvqd7sD7-LFeIJdcpm0MWRv7niA&scisf=4&ct=citation&cd=-1&hl=en"
},
{
"name": "EndNote",
"link": "https://scholar.googleusercontent.com/scholar.enw?q=info:FDc6HiktlqEJ:scholar.google.com/&output=citation&scisdr=ClHczGghGAA:AFWwaeYAAAAAZvqd7iY3OJeBM76mazJ0K90qfXg&scisig=AFWwaeYAAAAAZvqd7sD7-LFeIJdcpm0MWRv7niA&scisf=3&ct=citation&cd=-1&hl=en"
},
{
"name": "RefMan",
"link": "https://scholar.googleusercontent.com/scholar.ris?q=info:FDc6HiktlqEJ:scholar.google.com/&output=citation&scisdr=ClHczGghGAA:AFWwaeYAAAAAZvqd7iY3OJeBM76mazJ0K90qfXg&scisig=AFWwaeYAAAAAZvqd7sD7-LFeIJdcpm0MWRv7niA&scisf=2&ct=citation&cd=-1&hl=en"
},
{
"name": "RefWorks",
"link": "https://scholar.googleusercontent.com/scholar.rfw?q=info:FDc6HiktlqEJ:scholar.google.com/&output=citation&scisdr=ClHczGghGAA:AFWwaeYAAAAAZvqd7iY3OJeBM76mazJ0K90qfXg&scisig=AFWwaeYAAAAAZvqd7sD7-LFeIJdcpm0MWRv7niA&scisf=1&ct=citation&cd=-1&hl=en"
}
]
}Last updated