Google Scholar 作者 API
prod-global
GET
/api/v1/google/scholar/author
API 健康状态
健康 可用 受限 大多不可用 无数据
正在加载健康状态...
获取Google Scholar作者数据,包括出版物、引用指标和研究兴趣,用于研究人员分析和学术档案建立。
标签: Google Scholar
请求参数
| 名称 | 必填 | 类型 | 默认值 | 说明 |
|---|---|---|---|---|
author_id | 是 | string | 研究人员的唯一Google Scholar ID(例如:'LSs6DR8AAAAJ')。 | |
results | 否 | integer | 20 | 每页返回的结果数量。 |
language | 否 | string | en | 使用其两位字母代码设置结果语言(例如 'en' 表示英语,'fr' 表示法语)。请参阅 Google 语言。 |
view_op | 否 | string | 作者资料的特定视图操作。 可用值: - LIST_COLLEAGUES:列出合著者。旧值 list_colleagues 同样接受。- VIEW_CITATION:查看引用详情。旧值 view_citation 同样接受。 | |
sort | 否 | string | 作者出版物的排序标准。 可用值: - TITLE:按标题排序。旧值 title 同样接受。- PUBLICATION_DATE:按出版日期排序。旧值 pubdate 同样接受。 | |
citation_id | 否 | string | 要查看详情的引用ID(当'view_op'为'view_citation'时必需)。 |
复制请求
bash
curl -X GET "https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE" \
-H "X-API-Key: YOUR_API_KEY"js
const res = await fetch("https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE", {
headers: { "X-API-Key": "YOUR_API_KEY" }
});
const data = await res.json();
console.log(data);python
import requests
url = "https://api.justserpapi.com/api/v1/google/scholar/author"
headers = { "X-API-Key": "YOUR_API_KEY" }
params = {
"author_id": "YOUR_VALUE"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())php
<?php
$url = "https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"X-API-Key: YOUR_API_KEY"
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;go
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
client := &http.Client{}
req, _ := http.NewRequest("GET", "https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE", nil)
req.Header.Set("X-API-Key", "YOUR_API_KEY")
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}响应
正在加载最新响应示例...
