Google Scholar Profiles API
Google Scholar Profiles API allows searching public Google Scholar profiles and scraping their interests, affiliations, profile information, and more. API uses /api/v1/search?engine=google_scholar_profiles
endpoint to scrape profiles in real-time.
API Parameters
Localization
-
- Name
-
google_domain
- Required
- Optional
- Description
-
The default parameter
google.com
defines the Google domain of the search. Check the full list of supported Googlegoogle_domain
domains.
-
- Name
-
hl
- Required
- Optional
- Description
-
The default parameter
en
defines the interface language of the search. Check the full list of supported Googlehl
languages.
Engine
-
- Name
-
engine
- Required
- Required
- Description
-
Parameter defines an engine that will be used to retrieve real-time data. It must be set to
google_scholar_profiles
.
API key
-
- Name
-
api_key
- Required
- Required
- Description
-
The
api_key
authenticates your requests. Use it as a query parameter (https://www.searchapi.io/api/v1/search?api_key=YOUR_API_KEY
) or in the Authorization header (Bearer YOUR_API_KEY
).
API Examples
Full Response
https://www.searchapi.io/api/v1/search?engine=google_scholar_profiles&mauthors=Albert
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "google_scholar_profiles",
"mauthors": "Albert"
}
response = requests.get(url, params=params)
print(response.text)
{
"search_metadata": {
"id": "search_V6QeGdKRg9qes0kQg8mBExyv",
"status": "Success",
"created_at": "2023-08-25T10:41:03Z",
"request_time_taken": 1.79,
"parsing_time_taken": 0.03,
"total_time_taken": 1.81,
"request_url": "https://scholar.google.com/citations?mauthors=Albert&hl=en&view_op=search_authors",
"html_url": "https://www.searchapi.io/api/v1/searches/search_V6QeGdKRg9qes0kQg8mBExyv.html",
"json_url": "https://www.searchapi.io/api/v1/searches/search_V6QeGdKRg9qes0kQg8mBExyv"
},
"search_parameters": {
"engine": "google_scholar_profiles",
"mauthors": "Albert",
"hl": "en"
},
"profiles": [
{
"author_id": "muejNL8AAAAJ",
"name": "Albert Bandura",
"link": "https://scholar.google.com/citations?hl=en&user=muejNL8AAAAJ",
"affiliations": "Stanford University",
"cited_by": {
"total": 892380
},
"interests": [
{
"title": "Psychology",
"link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:psychology"
}
],
"thumbnail": "https://scholar.google.com/citations/images/avatar_scholar_56.png"
},
...
],
"pagination": {
"after_author": "xBIAAKAd_v8J",
"next": "https://scholar.google.com/citations?view_op=search_authors&hl=en&mauthors=Albert&after_author=xBIAAKAd_v8J&astart=10"
}
}