Google學者簡介API
最后更新于
最后更新于
端點GET https://serpapi.abcproxy.com/search
描述
我們的 Google學者簡介 API 允許您從Google學者簡介搜尋頁面擷取個人檔案結果。該 API 可透過以下端點存取:
/search?engine=google_scholar_profiles
。使用者可以利用
GET
請求查詢以下網址:https://serpapi.abcproxy.com/search?engine=google_scholar_profiles
。前往 瀏覽實時互動演示。
curl -X GET "https://serpapi.abcproxy.com/search" \
-d "engine=google_scholar_profiles" \
-d "mauthors=Mike" \
-d "no_cache=false" \
-d "api_key=YOUR_API_KEY"
import requests
params = {
"engine": "google_scholar_profiles",
"mauthors": "Mike",
"no_cache": "false",
"api_key": "YOUR_API_KEY"
}
response = requests.get("https://serpapi.abcproxy.com/search", params=params)
print(response.json())
const axios = require('axios');
const params = {
engine: "google_scholar_profiles",
mauthors: "Mike",
no_cache: "false",
api_key: "YOUR_API_KEY"
};
axios.get("https://serpapi.abcproxy.com/search", { params })
.then(response => console.log(response.data));
GET /search?engine=google_scholar_profiles&mauthors=Mike&no_cache=false&api_key=YOUR_API_KEY HTTP/1.1
Host: serpapi.abcproxy.com
<?php
$client = new \GuzzleHttp\Client();
$response = $client->get('https://serpapi.abcproxy.com/search', [
'query' => [
'engine' => 'google_scholar_profiles',
'mauthors' => 'Mike',
'no_cache' => 'false',
'api_key' => 'YOUR_API_KEY'
]
]);
echo $response->getBody();
package main
import (
"net/http"
"io/ioutil"
"log"
)
func main() {
client := &http.Client{}
req, _ := http.NewRequest("GET", "https://serpapi.abcproxy.com/search", nil)
q := req.URL.Query()
q.Add("engine", "google_scholar_profiles")
q.Add("mauthors", "Mike")
q.Add("no_cache", "false")
q.Add("api_key", "YOUR_API_KEY")
req.URL.RawQuery = q.Encode()
resp, _ := client.Do(req)
body, _ := ioutil.ReadAll(resp.Body)
log.Println(string(body))
}
using System;
using System.Net.Http;
class Program
{
static async Task Main()
{
var client = new HttpClient();
var query = System.Web.HttpUtility.ParseQueryString(string.Empty);
query["engine"] = "google_scholar_profiles";
query["mauthors"] = "Mike";
query["no_cache"] = "false";
query["api_key"] = "YOUR_API_KEY";
var response = await client.GetAsync(
$"https://serpapi.abcproxy.com/search?{query}"
);
Console.WriteLine(await response.Content.ReadAsStringAsync());
}
}
import java.net.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
String url = "https://serpapi.abcproxy.com/search" +
"?engine=google_scholar_profiles" +
"&mauthors=Mike" +
"&no_cache=false" +
"&api_key=YOUR_API_KEY";
HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
conn.setRequestMethod("GET");
BufferedReader in = new BufferedReader(
new InputStreamReader(conn.getInputStream())
);
String response = in.lines().collect(Collectors.joining());
System.out.println(response);
}
}
搜尋查詢
mauthors
字符串
是
參數定義您想搜尋的作者。您也可以在查詢中使用輔助詞,例如:label:
。
Mike
本地化
hl
字符串
否
en
分頁
after_author
整數型
否
參數定義下一頁的標記,用於取得下一頁結果。此參數優先於 before_author
。
1
before_author
整數型
否
參數定義上一頁的標記,用於取得上一頁結果。
1
Serpapi 參數
engine
字符串
是
將參數設為 google_scholar_profiles
以使用 Google Finance API 引擎。
google_scholar_profiles
no_cache
佈爾值
否
參數將強制 SerpApi 取得結果,即使已有快取版本。快取只有在查詢及所有參數完全相同時才會使用。快取在 1 小時後失效。快取搜尋免費且不計入每月配額。可設為 false
(預設)允許使用快取結果,或 true
禁止使用快取結果。
true
或false
api_key
字符串
是
參數定義要使用的 SerpApi 私鑰。
123
回應主體
{
"search_metadata": {
"json_endpoint": "https://webserp.abcproxy.com/files/57ad90004b807ac7/17f31cb4-69fd-42f2-8729-eb2be11a1716.json",
"created_at": "2025-04-02 18:38:21",
"google_news_url": "https://scholar.google.com/citations?mauthors=Mike&view_op=search_authors",
"raw_html_file": "https://webserp.abcproxy.com/files/57ad90004b807ac7/17f31cb4-69fd-42f2-8729-eb2be11a1716.html",
"xray_html_file": "https://webserp.abcproxy.com/files/57ad90004b807ac7/17f31cb4-69fd-42f2-8729-eb2be11a1716.xray",
"total_time_taken": "33.8326",
"id": "17f31cb4-69fd-42f2-8729-eb2be11a1716"
},
"search_parameters": {
"engine": "google_scholar_profiles",
"no_cache": true,
"api_key": "YOUR_API_KEY",
"mauthors": "Mike"
},
"url": "https://scholar.google.com/citations?mauthors=Mike&view_op=search_authors",
"profiles": [
{
"cited_by": "Time Cited:171285",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=ZjfgPLMAAAAJ",
"interests": [
{
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:statistical_genetics",
"title": "statistical genetics"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=ZjfgPLMAAAAJ&citpid=14",
"name": "Mike A. Nalls",
"affiliations": "Founder/consultant with Data Tecnica International + Data science lead at NIH's Center for …",
"email": "exist mail.nih.gov The email has been verified"
},
{
"affiliations": "imperial college",
"email": "exist imperial.ac.uk The email has been verified",
"cited_by": "Time Cited:132511",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=RIg9DVEAAAAJ",
"interests": [
{
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:entrepreneurship",
"title": "entrepreneurship"
}
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=RIg9DVEAAAAJ&citpid=2",
"name": "mike wright"
},
{
"email": "exist glasgow.ac.uk The email has been verified",
"cited_by": "Time Cited:99178",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=R8PPdbQAAAAJ",
"interests": [
{
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:food",
"title": "Food"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=R8PPdbQAAAAJ&citpid=3",
"name": "Mike Lean (MEJ Lean)",
"affiliations": "Professor of Human Nutrition, University of Glasgow"
},
{
"cited_by": "Time Cited:97491",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=L9lS9_AAAAAJ",
"interests": [
{
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:machine_learning",
"title": "machine learning"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=L9lS9_AAAAAJ&citpid=1",
"name": "Mike Schuster",
"affiliations": "Two Sigma",
"email": "exist twosigma.com The email has been verified"
},
{
"interests": [
{
"title": "anaerobic microbiology",
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:anaerobic_microbiology"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=iXjCKTgAAAAJ&citpid=3",
"name": "prof dr ir Mike SM Jetten",
"affiliations": "Radboud University, Microbiology, Nijmegen, Netherlands",
"email": "exist science.ru.nl The email has been verified",
"cited_by": "Time Cited:88539",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=iXjCKTgAAAAJ"
},
{
"affiliations": "Professor, Forestry and Agricultural Biotechnology Institute (FABI), University of Pretoria",
"email": "exist fabi.up.ac.za The email has been verified",
"cited_by": "Time Cited:82519",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=wT4V7isAAAAJ",
"interests": [
{
"title": "forest protection",
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:forest_protection"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=wT4V7isAAAAJ&citpid=5",
"name": "Mike Wingfield"
},
{
"name": "Mike Lewis",
"affiliations": "Facebook AI Research",
"email": "exist fb.com The email has been verified",
"cited_by": "Time Cited:79064",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=SnQnQicAAAAJ",
"interests": [
{
"title": "Natural language processing",
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:natural_language_processing"
},
],
"thumbnail": "/citations/images/avatar_scholar_56.png"
},
{
"affiliations": "Jindal Chair of Global Strategy, University of Texas at Dallas",
"email": "exist utdallas.edu The email has been verified",
"cited_by": "Time Cited:67675",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=z1Kz8gQAAAAJ",
"interests": [
{
"title": "International Business",
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:international_business"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=z1Kz8gQAAAAJ&citpid=2",
"name": "Mike W. Peng"
},
{
"affiliations": "University of Cambridge",
"email": "exist cam.ac.uk The email has been verified",
"cited_by": "Time Cited:62648",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=uQJsUvEAAAAJ",
"interests": [
{
"title": "Climate Change",
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:climate_change"
},
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=uQJsUvEAAAAJ&citpid=1",
"name": "Mike Hulme"
},
{
"name": "Mike Tyers",
"affiliations": "The Hospital for Sick Children",
"email": "exist sickkids.ca The email has been verified",
"cited_by": "Time Cited:62416",
"link": "https//scholar.google.com/citations?hl=zh-CN&user=9zEuqoIAAAAJ",
"interests": [
{
"title": "cell growth and division",
"link": "https//scholar.google.com/citations?hl=zh-CN&view_op=search_authors&mauthors=label:cell_growth_and_division"
},
],
"thumbnail": "/citations/images/avatar_scholar_56.png"
}
]
}
回應欄位
search_parameters
對象
包含查詢參數與搜尋上下文
search_metadata
對象
包含時間與狀態資訊
profiles
數組
profiles 資訊參數
pagination
對象
分頁資訊參數
next
字符串
下一頁資訊參數
next_page_token
字符串
下一頁標記資訊參數
常見錯誤
200
400
API Key 不可為空
200
401
參數錯誤
200
402
API Key 錯誤
200
403
餘額不足
200
404
扣款失敗
200
405
紀錄使用次數失敗
200
406
不支援的引擎
200
407
網路錯誤
200
408
檔案未找到
200
409
限制參數錯誤
200
410
建立 URL 錯誤
200
411
查詢最近紀錄失敗
200
412
找不到 JSON
200
413
取得 HTML 錯誤
200
414
HTML 為空
200
429
請求過多
錯誤範例
{
"code": 400,
"message": "API Key can not be empty"
}
參數定義用於 Google Scholar Profiles 搜尋的語言。這是一個兩字母的語言代碼。(例如:英文為 en
,西班牙文為 es
,法文為 fr
)。前往 查看完整支援列表。