Skip to content
Login Sign up

Google Scholar API

Retrieve academic and scholarly results from Google Scholar in real time. Set engine=google_scholar and pass the topic or paper title in q to get a structured list of publications with authors, citations, and PDF links.

GET https://serp.shifter.io/v1?engine=google_scholar&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesYour SERP API key
enginestringyesMust be google_scholar
qstringyesThe search query
lrstringnoLanguage restriction, format lang_xx
hlstringnoInterface language code
startintnoResult offset for pagination
numintnoNumber of results per page
as_visintno1 to exclude citations, 0 to include
safestringnoactive or off
citesstringnoArticle unique ID to trigger Cited By searches
as_ylointnoEarliest year to include
as_yhiintnoLatest year to include
scisbdintno1 for abstracts only, 0 for all results
Terminal window
curl "https://serp.shifter.io/v1?engine=google_scholar&api_key=YOUR_API_KEY&q=python"
{
"search_parameters": {
"engine": "google_scholar",
"q": "python"
},
"organic_results": [
{
"position": 1,
"title": "Python for data analysis",
"result_id": "FDc6HiktlqEJ",
"link": "https://example.com/paper.pdf",
"snippet": "This book is concerned with the nuts and bolts of manipulating...",
"publication_info": {
"summary": "W McKinney - 2012 - oreilly.com"
},
"inline_links": {
"cited_by": { "total": 12000, "cites_id": "11234567" }
}
}
]
}