Skip to content
Login Sign up

Google Scholar Author API

Retrieve the full profile of a Google Scholar author, including their publication list, citation metrics, and colleagues. Set engine=google_scholar_author and pass the author’s ID in author_id.

GET https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesYour SERP API key
enginestringyesMust be google_scholar_author
author_idstringyesThe Google Scholar author ID
devicestringnodesktop, mobile, or tablet
view_opstringnoview_citation or list_colleagues
sortstringnotitle or pubdate
citation_idstringnoRequired when view_op=view_citation
hlstringnoInterface language code
startintnoResult offset for pagination
numintnoNumber of results per page
Terminal window
curl "https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY&author_id=LSsXyncAAAAJ"
{
"search_parameters": {
"engine": "google_scholar_author",
"author_id": "LSsXyncAAAAJ"
},
"author": {
"name": "Jane Doe",
"affiliations": "Professor, Stanford University",
"email": "Verified email at stanford.edu",
"interests": [ { "title": "Machine Learning" } ],
"thumbnail": "https://scholar.google.com/citations?view_op=view_photo&user=..."
},
"articles": [
{
"title": "Deep learning for computer vision",
"link": "https://scholar.google.com/citations?view_op=view_citation&...",
"citation_id": "u5HHmVD_uO8C",
"year": "2015",
"cited_by": { "value": 4500 }
}
],
"cited_by": {
"table": [ { "citations": { "all": 12000, "since_2019": 8000 } } ]
}
}