Google Scholar Author API
Ruft das vollständige Profil eines Google-Scholar-Autors ab, einschließlich Publikationsliste, Zitationsmetriken und Kollegen. Setzen Sie engine=google_scholar_author und übergeben Sie die Autoren-ID in author_id.
Endpoint
Abschnitt betitelt „Endpoint“ GET https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY
Parameter
Abschnitt betitelt „Parameter“| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
api_key | string | ja | Ihr SERP-API-Schlüssel |
engine | string | ja | Muss google_scholar_author sein |
author_id | string | ja | Die Google-Scholar-Autoren-ID |
device | string | nein | desktop, mobile oder tablet |
view_op | string | nein | view_citation oder list_colleagues |
sort | string | nein | title oder pubdate |
citation_id | string | nein | Erforderlich, wenn view_op=view_citation |
hl | string | nein | Sprachcode der Oberfläche |
start | int | nein | Ergebnisoffset für die Paginierung |
num | int | nein | Anzahl der Ergebnisse pro Seite |
Beispielanfrage
Abschnitt betitelt „Beispielanfrage“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();Beispielantwort
Abschnitt betitelt „Beispielantwort“{ "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 } } ] }}