API de Perfis do Google Scholar
Encontre perfis de autores do Google Scholar por nome. Defina engine=google_scholar_profiles e passe o nome em mauthors para obter uma lista de autores correspondentes com seus IDs, afiliações e contagens de citações.
Endpoint
Seção intitulada “Endpoint” GET https://serp.shifter.io/v1?engine=google_scholar_profiles&api_key=YOUR_API_KEY
Parameters
Seção intitulada “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | yes | Sua chave de API do SERP |
engine | string | yes | Deve ser google_scholar_profiles |
mauthors | string | yes | O(s) nome(s) de autor a pesquisar |
hl | string | no | Código de idioma da interface |
after_author | string | no | Token da próxima página, deve seguir um valor before_author |
before_author | string | no | Token da página anterior |
Example request
Seção intitulada “Example request”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();Example response
Seção intitulada “Example response”{ "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=..." }}