Google Scholar Author API
Google Scholar 저자의 전체 프로필을 조회합니다. 여기에는 게시물 목록, 인용 지표, 동료 정보가 포함됩니다. engine=google_scholar_author를 설정하고 저자의 ID를 author_id에 전달하세요.
Endpoint
섹션 제목: “Endpoint” GET https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY
Parameters
섹션 제목: “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | yes | 사용자의 SERP API 키 |
engine | string | yes | google_scholar_author여야 함 |
author_id | string | yes | Google Scholar 저자 ID |
device | string | no | desktop, mobile, 또는 tablet |
view_op | string | no | view_citation 또는 list_colleagues |
sort | string | no | title 또는 pubdate |
citation_id | string | no | view_op=view_citation일 때 필수 |
hl | string | no | 인터페이스 언어 코드 |
start | int | no | 페이지네이션을 위한 결과 오프셋 |
num | int | no | 페이지당 결과 수 |
Example request
섹션 제목: “Example request”curl "https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY&author_id=LSsXyncAAAAJ"import requests
params = { "engine": "google_scholar_author", "api_key": "YOUR_API_KEY", "author_id": "LSsXyncAAAAJ",}r = requests.get("https://serp.shifter.io/v1", params=params)data = r.json()import fetch from 'node-fetch';
const url = 'https://serp.shifter.io/v1?' + new URLSearchParams({ engine: 'google_scholar_author', api_key: 'YOUR_API_KEY', author_id: 'LSsXyncAAAAJ',});const data = await (await fetch(url)).json();Example response
섹션 제목: “Example response”{ "search_parameters": { "engine": "google_scholar_author", "author_id": "LSsXyncAAAAJ" }, "author": { "name": "Jane Doe", "affiliations": "Professor, Stanford University", "email": "Verified email at stanford.edu", "interests": [ { "title": "Machine Learning" } ], "thumbnail": "https://scholar.google.com/citations?view_op=view_photo&user=..." }, "articles": [ { "title": "Deep learning for computer vision", "link": "https://scholar.google.com/citations?view_op=view_citation&...", "citation_id": "u5HHmVD_uO8C", "year": "2015", "cited_by": { "value": 4500 } } ], "cited_by": { "table": [ { "citations": { "all": 12000, "since_2019": 8000 } } ] }}