Skip to content
登录 注册

Google Scholar 个人主页 API

按姓名查找 Google Scholar 作者档案。设置 engine=google_scholar_profiles 并将姓名传入 mauthors,即可获取匹配作者的列表,包含其 ID、所属机构和引用次数。

GET https://serp.shifter.io/v1?engine=google_scholar_profiles&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyes您的 SERP API 密钥
enginestringyes必须为 google_scholar_profiles
mauthorsstringyes要搜索的作者姓名
hlstringno界面语言代码
after_authorstringno下一页令牌,必须跟在 before_author 值之后使用
before_authorstringno上一页令牌
Terminal window
curl "https://serp.shifter.io/v1?engine=google_scholar_profiles&api_key=YOUR_API_KEY&mauthors=jake"
{
"search_parameters": {
"engine": "google_scholar_profiles",
"mauthors": "jake"
},
"profiles": [
{
"name": "Jake Smith",
"author_id": "LSsXyncAAAAJ",
"affiliations": "Professor of Computer Science, MIT",
"email": "Verified email at mit.edu",
"cited_by": 18200,
"interests": [ { "title": "Artificial Intelligence" } ],
"thumbnail": "https://scholar.google.com/citations?view_op=view_photo&user=..."
}
],
"pagination": {
"next_page_token": "...",
"next": "https://serp.shifter.io/v1?engine=google_scholar_profiles&mauthors=jake&after_author=..."
}
}