コンテンツにスキップ
ログイン サインアップ

Google Scholar API

Google Scholarから学術論文の検索結果をリアルタイムで取得します。engine=google_scholar を設定し、トピックまたは論文タイトルを q に渡すことで、著者、引用数、PDFリンクを含む構造化された出版物リストを取得できます。

GET https://serp.shifter.io/v1?engine=google_scholar&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesあなたのSERP APIキー
enginestringyesgoogle_scholar を指定する必要があります
qstringyes検索クエリ
lrstringno言語制限、形式は lang_xx
hlstringnoインターフェース言語コード
startintnoページネーション用の結果オフセット
numintno1ページあたりの結果数
as_visintno引用を除外する場合は 1、含める場合は 0
safestringnoactive または off
citesstringnoCited By検索をトリガーするための記事の一意ID
as_ylointno含める最も古い年
as_yhiintno含める最も新しい年
scisbdintno抄録のみの場合は 1、すべての結果の場合は 0
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" }
}
}
]
}