API Auteur Google Scholar
Récupérez le profil complet d’un auteur Google Scholar, y compris sa liste de publications, ses statistiques de citations et ses collègues. Définissez engine=google_scholar_author et transmettez l’ID de l’auteur dans author_id.
Endpoint
Section intitulée « Endpoint » GET https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY
Parameters
Section intitulée « Parameters »| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | yes | Votre clé API SERP |
engine | string | yes | Doit être google_scholar_author |
author_id | string | yes | L’ID de l’auteur Google Scholar |
device | string | no | desktop, mobile, ou tablet |
view_op | string | no | view_citation ou list_colleagues |
sort | string | no | title ou pubdate |
citation_id | string | no | Requis lorsque view_op=view_citation |
hl | string | no | Code de langue de l’interface |
start | int | no | Décalage des résultats pour la pagination |
num | int | no | Nombre de résultats par page |
Example request
Section intitulée « 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
Section intitulée « 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 } } ] }}