Google Scholar Author API
Google Scholar Author API Integration Examples
https://serp.shifter.io/v1?engine=google_scholar_author&api_key=<YOUR_API_KEY>&author_id=LSsXyncAAAAJReady to Use Google Scholar Author Scraping Scripts
curl --request GET --url "https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY&author_id=LSsXyncAAAAJ"const http = require("https");
const options = {
"method": "GET",
"hostname": "serp.shifter.io",
"port": null,
"path": "/v1?engine=google_scholar_author&api_key=YOUR_API_KEY&author_id=LSsXyncAAAAJ",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();Google Scholar Profiles Parameters
#1: Query Parameter
Parameter
Type
Description
#2: Request Customisation Parameters
Parameter
Type
Description
#3: Localisation Parameters
Parameter
Type
Description
#4: Pagination Parameters
Parameter
Type
Description
Last updated
Was this helpful?