Google Scholar
SERP API 谷歌查詢參數
使用 Thordata 的 SERP API 配置谷歌搜索查詢,包括本地化參數、地理位置、分頁、以及「高級參數」等輸出選項。
q
,搜索查詢(必填)
定義用於數據抓取的搜索查詢(默認值:q=pizza
)。支持任何語言的任意關鍵詞。
示例請求:
使用q
:pizza參數的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1"
本土化
hl
,語言(非必填)
設定搜尋結果的介面語言(預設值:en
)。採用標準語言代碼格式(例如:en
-英文,es
-西班牙文,zh-CN
-簡體中文)。
完整語言代碼支援清單請參閱:Google官方語言代碼表
示例請求:
查询q
:pizza,hl
: es的示例結果
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "hl=es"
lr
,設置多語言(非必填)
使用 lang_XX
代碼(如 lang_fr|lang_de
)依語言篩選結果。
若同時使用 hl
參數,此參數將覆蓋 hl
設定。
hl
與 lr
參數可同時使用,但實際效果以 lr
參數為優先。
示例請求:
查询 q
: pizza,lr
: lang_en|lang_fr的示例結果
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "lr=lang_fr|lang_en"
地理位置
location
,地理位置(非必填)
模擬從精確位置發起搜尋(需搭配 uule
參數使用)。若未指定,系統可能採用代理伺服器的地理位置。
示例請求:
查询 q
: pizza,location
:India,uule
:w+CAIQICIFSW5kaWE的示例結果
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "location=India" \
-d "uule=w+CAIQICIFSW5kaWE"
uule
,UULE(非必填)
使用 Base64
編碼目標地理位置(需配合 location
參數使用)
示例請求:
查询 q
: pizza,location
:India,uule
:w+CAIQICIFSW5kaWE的示例結果
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "location=India" \
-d "uule=w+CAIQICIFSW5kaWE"
搜索類型
as_sdt
,搜索類型(非必填)
此參數可用作搜尋類型或篩選器。 作為過濾器(僅在搜尋文章時有效): 0
- 排除專利(預設)。 - 7
包含專利。 作為搜尋類型: 4
- 選擇判例法(僅限美國法院)。這將選擇所有州和聯邦法院。
示例請求:
查询 q
: pizza,as_sdt
:4的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "as_sdt=4"
分頁
start
,結果偏移量(非必填)
設定搜尋結果分頁起始點(例如 "start=30
" 表示跳過前 30 筆結果,從第 31 筆開始顯示)。
示例請求:
查询 q
: pizza,start
:30的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "start=30"
num
,煤業結果數(非必填)
設定搜尋結果每頁回傳的最大數量(例如:num=10
表示每頁回傳10筆結果)。
示例請求:
查询 cq
: pizza,num
:20的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "num=20"
高級參數
cites
,引用(非必填)
参数定义文章的唯一 ID,用于触发“被引文献”搜索。使用cites
将显示 Google 学术搜索中的引用文献列表。示例值:cites=1275980731835430123
。使用cites
和q
参数将在引用文献中触发搜索。
示例請求:
查询q
: pizza,cites
:1275980731835430123的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "cites=1275980731835430123"
as_ylo
,開始年份非必填)
此參數定義了您希望包含結果的年份。此參數可以與as_yhi
參數結合使用。
示例請求:
查询 q
: pizza,as_ylo
:2022的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "as_ylo=2022"
as_yhi
,結束年份(非必填)
此參數定義了您希望包含結果的年份。此參數可以與as_yhi
參數結合使用。
示例請求:
查询 q
: pizza,as_ylo
:2025的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "as_ylo=2022" \
-d "as_yhi=2025"
scisbd
,按日期排序(非必填)
此參數定義去年新增的文章,依日期排序。可設定為1
僅包含摘要,或2
包含所有內容。預設值為,0
表示文章依相關性排序。
示例請求:
查询q
: pizza,cisbd
:1的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "scisbd=1"
cluster
,版本非必填)
參數 cluster
用於定義文章的唯一ID,以觸發「所有版本」搜尋。範例值:cluster=1275980731835430123
。禁止 cluster
與 q
和 cites
參數同時使用。請僅使用 cluster
參數。
示例請求:
查询 q
: pizza,cluster
:1275980731835430123的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "cluster=1275980731835430123"
高級篩選
safe
,安全(非必填)
此參數用於設定是否過濾成人內容(預設值:依Google政策)。可指定值:
active
:啟用嚴格過濾off
:完全停用過濾 (注意:即使設為off
,Google仍可能對露骨內容進行模糊化處理
示例請求:
查询 q
: pizza,safe
:active的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "safe=active"
nfpr
,排除自動更正結果(非必填)
此參數用於設定是否停用搜尋關鍵字自動校正功能,例如:
nfpr=1
:啟用嚴格模式(輸入「googl」將不會自動校正為「google」)nfpr=0
:使用預設自動校正功能
示例請求:
查询 q
: pizza,nfpr
:1的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "nfpr=1"
filter
,結果篩選(非必填)
此參數用於控制搜尋結果去重功能:
1
:啟用結果去重(移除重複內容)0
:停用結果去重(顯示完整結果)
示例请求:
查询 q
: pizza,filter
:1的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "filter=1"
as_vis
,顯示引用(非必填)
此參數定義您是否要包含引用。您可以將其設定為1
排除這些結果,或0
(預設)將其包含。
示例請求:
查询q
: pizza,as_vis
:1的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "as_vis=1"
as_rr
,顯示評論文章(非必填)
此參數定義您是否希望僅顯示評論文章(這些文章包含主題評論,或討論您搜尋的作品或作者)。您可以設定為1
啟用此過濾器,或0
(預設)顯示所有結果。
示例請求:
查询 q
: pizza,as_rr
:1的示例
curl -X POST https://scraperapi.thordata.com/request \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Authorization: Bearer token" \
-d "engine=google_scholar" \
-d "q=pizza" \
-d "json=1" \
-d "as_rr=1"
如需進一步幫助,請透過 [email protected] 聯繫我們。
Last updated
Was this helpful?