API de autor de Google Scholar
Obtén el perfil completo de un autor de Google Scholar, incluida su lista de publicaciones, métricas de citas y colegas. Configura engine=google_scholar_author y pasa el ID del autor en author_id.
Endpoint
Sección titulada «Endpoint» GET https://serp.shifter.io/v1?engine=google_scholar_author&api_key=YOUR_API_KEY
Parámetros
Sección titulada «Parámetros»| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | yes | Tu clave de API de SERP |
engine | string | yes | Debe ser google_scholar_author |
author_id | string | yes | El ID de autor de Google Scholar |
device | string | no | desktop, mobile o tablet |
view_op | string | no | view_citation o list_colleagues |
sort | string | no | title o pubdate |
citation_id | string | no | Obligatorio cuando view_op=view_citation |
hl | string | no | Código de idioma de la interfaz |
start | int | no | Desplazamiento de resultados para la paginación |
num | int | no | Número de resultados por página |
Ejemplo de solicitud
Sección titulada «Ejemplo de solicitud»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();Ejemplo de respuesta
Sección titulada «Ejemplo de respuesta»{ "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 } } ] }}