Google Scholar Profiles API
Finden Sie Google Scholar Autorenprofile anhand des Namens. Setzen Sie engine=google_scholar_profiles und übergeben Sie den Namen an mauthors, um eine Liste passender Autoren mit ihren IDs, Zugehörigkeiten und Zitierungszahlen zu erhalten.
Endpoint
Abschnitt betitelt „Endpoint“ GET https://serp.shifter.io/v1?engine=google_scholar_profiles&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_profiles sein |
mauthors | string | ja | Der zu suchende Autorenname(n) |
hl | string | nein | Sprachcode der Benutzeroberfläche |
after_author | string | nein | Token für die nächste Seite, muss auf einen before_author-Wert folgen |
before_author | string | nein | Token für die vorherige Seite |
Beispielanfrage
Abschnitt betitelt „Beispielanfrage“curl "https://serp.shifter.io/v1?engine=google_scholar_profiles&api_key=YOUR_API_KEY&mauthors=jake"import requests
params = { "engine": "google_scholar_profiles", "api_key": "YOUR_API_KEY", "mauthors": "jake",}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_profiles', api_key: 'YOUR_API_KEY', mauthors: 'jake',});const data = await (await fetch(url)).json();Beispielantwort
Abschnitt betitelt „Beispielantwort“{ "search_parameters": { "engine": "google_scholar_profiles", "mauthors": "jake" }, "profiles": [ { "name": "Jake Smith", "author_id": "LSsXyncAAAAJ", "affiliations": "Professor of Computer Science, MIT", "email": "Verified email at mit.edu", "cited_by": 18200, "interests": [ { "title": "Artificial Intelligence" } ], "thumbnail": "https://scholar.google.com/citations?view_op=view_photo&user=..." } ], "pagination": { "next_page_token": "...", "next": "https://serp.shifter.io/v1?engine=google_scholar_profiles&mauthors=jake&after_author=..." }}