Google Scholar API
Google Scholar API uses /api/v1/search?engine=google_scholar
API endpoint to scrape real-time results.
Google Scholar API lets users search for academic content like articles, theses, and books from various sources. It ranks these items based on their text, author, where they're published, and how often they're cited. This helps users find relevant research quickly.
API Parameters
Search Query
-
- Name
-
q
- Required
- Required
- Description
-
Parameter defines the query you want to search. You can use anything that you would use in a regular Google Scholar search. e.g.
source:
,author:
. Parameter is not required ifcites
orcluster
parameter is present.
-
- Name
-
cites
- Required
- Optional
- Description
-
The cites parameter is used to specify a unique ID for an article. Utilizing this parameter will generate a list of documents in Google Scholar that cite the specified article. For instance,
cites=13392090434137936466
could be used to find all documents that cite the article with this unique ID. Additionally, using both the cites and q parameters together will result in a search within the citing articles themselves.
-
- Name
-
cluster
- Required
- Optional
- Description
-
The cluster parameter is used to specify a unique ID for an article. Utilizing this parameter will generate a list of document versions in Google Scholar that are related to the specified article. Note: When the
q
andcluster
parameters are used together, they are not compatible. In such cases, priority is given to theq
parameter.
Localization
-
- Name
-
hl
- Required
- Optional
- Description
-
The default parameter
en
defines the interface language of the search. Check the full list of supported Googlehl
languages.
-
- Name
-
lr
- Required
- Optional
- Description
-
The lr parameter restricts search results to documents written in a particular language or a set of languages. The accepted format for this parameter is
lang_{2-letter country code}
. For instance, to filter documents written in Japanese, the value should be set tolang_jp
. To incorporate multiple languages, a value likelang_it|lang_de
restricts the search to documents written in either Italian or German. Google identifies the document language based on the top-level domain (TLD) of the document's URL, any language meta tags present, or the language utilized within the document's body text. Check the full list of supported Googlelr
languages.
Filters
-
- Name
-
scisbd
- Required
- Optional
- Description
-
Default value
0
returns all results sorted by relevance. There are two other options:1
- includes only abstracts, filters articles added in the last year, and sorts by date.2
- filters articles added in the last year and sorts by date.
scisbd=1
andscisbd=2
values are not compatible withas_ylo
oras_yhi
parameters.
-
- Name
-
as_ylo
- Required
- Optional
- Description
-
Parameter sets the start year to filter results. Pair with
as_yhi
for a specific end year. Input format:YYYY
. E.g.,as_ylo=2022
fetches results from 2022 onwards.
-
- Name
-
as_yhi
- Required
- Optional
- Description
-
Parameter sets the start year to filter results. Pair with
as_yhi
for a specific end year. Input format:YYYY
. E.g.,as_yhi=2022
fetches results till 2022 backwards.
-
- Name
-
as_rr
- Required
- Optional
- Description
-
Default value
0
returns all results. Use1
to return results only with review articles.
-
- Name
-
as_vis
- Required
- Optional
- Description
-
Default value
0
returns results with citations. Use1
to return results without citations.
-
- Name
-
as_sdt
- Required
- Optional
- Description
-
This parameter works as a filter for patents or as filter for US court law. By default,
0
returns results without patents.
Patent Filter Values:0
- Excludes patents (default).7
- Includes patents.
4
- All US courts. For specific courts, append values after4
separated by commas (e.g.,4,1
for Alabama courts or4,192
for tax federal court).ffffffffffffe04
- All US state courts.3
- All US federal courts.
-
- Name
-
filter
- Required
- Optional
- Description
-
This parameter controls whether the "Duplicate Content" and "Host Crowding" filters are enabled. Set the value to
1
to enable these filters, which is the default setting. To disable these filters, set the value to0
.
-
- Name
-
safe
- Required
- Optional
- Description
-
This parameter toggles the SafeSearch feature for the results. SafeSearch operates by filtering out adult content from your search results. Google's filters use proprietary technology to check keywords, phrases and URLs. While no filters are 100 percent accurate, SafeSearch will remove the overwhelming majority of adult content from your search results. Set the value to
active
to enable SafeSearch. To disable it, set the value tooff
. By default, SafeSearch is disabled.
-
- Name
-
source
- Required
- Optional
- Description
-
This parameter allows filtering of organic results based on a specific source. It is added to the
q
parameter and is not compatible withcites
orcluster
parameters.
Pagination
-
- Name
-
num
- Required
- Optional
- Description
-
This parameter specifies the number of results to display per page. By default, it is set to
10
, maximum number -20
. Use in combination with thepage
parameter to implement pagination functionality.
-
- Name
-
page
- Required
- Optional
- Description
-
This parameter indicates which page of results to return. By default, it is set to
1
. Use in combination with thenum
parameter to implement pagination.
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
.
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&q=Langchain
- 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",
"q": "Langchain"
}
response = requests.get(url, params = params)
print(response.text)
{
"search_metadata": {
"id": "search_AxENYzjKgR4PcjaK3D0M4GJb",
"status": "Success",
"created_at": "2023-08-14T14:21:25Z",
"request_time_taken": 1.27,
"parsing_time_taken": 0.03,
"total_time_taken": 1.3,
"request_url": "https://scholar.google.com/scholar?q=Langchain&hl=en",
"html_url": "https://www.searchapi.io/api/v1/searches/search_AxENYzjKgR4PcjaK3D0M4GJb.html",
"json_url": "https://www.searchapi.io/api/v1/searches/search_AxENYzjKgR4PcjaK3D0M4GJb"
},
"search_parameters": {
"engine": "google_scholar",
"q": "Langchain",
"google_domain": "google.com",
"hl": "en"
},
"search_information": {
"query_displayed": "Langchain",
"total_results": 411,
"page": 1,
"time_taken_displayed": 0.07
},
"organic_results": [
{
"position": 1,
"title": "Creating Large Language Model Applications Utilizing LangChain: A Primer on Developing LLM Apps Fast",
"data_cid": "QXV-Nxym8hQJ",
"link": "https://as-proceeding.com/index.php/icaens/article/view/1127",
"publication": "O Topsakal, TC Akinci - International Conference on Applied …, 2023 - as-proceeding.com",
"snippet": "… LangChain has been widely recognized in the AI community for its ability … LangChain and provide a primer on developing large language model applications rapidly utilizing LangChain…",
"inline_links": {
"cached_page_link": "https://scholar.googleusercontent.com/scholar?q=cache:QXV-Nxym8hQJ:scholar.google.com/+Langchain&hl=en&as_sdt=0,5"
},
"resource": {
"name": "as-proceeding.com",
"format": "PDF",
"link": "https://as-proceeding.com/index.php/icaens/article/download/1127/1062"
},
"authors": [
{
"name": "O Topsakal",
"id": "ukpd7PsAAAAJ",
"link": "https://scholar.google.com/citations?user=ukpd7PsAAAAJ&hl=en&oi=sra"
},
{
"name": "TC Akinci",
"id": "GR2VnR4AAAAJ",
"link": "https://scholar.google.com/citations?user=GR2VnR4AAAAJ&hl=en&oi=sra"
}
]
},
{
"position": 2,
"title": "ThoughtSource: A central hub for large language model reasoning data",
"data_cid": "7Ku7QO7xy7AJ",
"link": "https://arxiv.org/abs/2301.11596",
"publication": "S Ott, K Hebenstreit, V Liévin, CE Hother… - arXiv preprint arXiv …, 2023 - arxiv.org",
"snippet": "Large language models (LLMs) such as GPT-3 and ChatGPT have recently demonstrated impressive results across a wide range of tasks. LLMs are still limited, however, in that they …",
"inline_links": {
"cited_by": {
"cites_id": "12739541976538131436",
"total": 3,
"link": "https://scholar.google.com/scholar?cites=12739541976538131436&as_sdt=2005&sciodt=0,5&hl=en"
},
"versions": {
"cluster_id": "12739541976538131436",
"total": 3,
"link": "https://scholar.google.com/scholar?cluster=12739541976538131436&hl=en&as_sdt=0,5"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:7Ku7QO7xy7AJ:scholar.google.com/&scioq=Langchain&hl=en&as_sdt=0,5",
"cached_page_link": "https://scholar.googleusercontent.com/scholar?q=cache:7Ku7QO7xy7AJ:scholar.google.com/+Langchain&hl=en&as_sdt=0,5"
},
"resource": {
"name": "arxiv.org",
"format": "PDF",
"link": "https://arxiv.org/pdf/2301.11596"
},
"authors": [
{
"name": "S Ott",
"id": "it76QxoAAAAJ",
"link": "https://scholar.google.com/citations?user=it76QxoAAAAJ&hl=en&oi=sra"
},
{
"name": "K Hebenstreit",
"id": "n-0tXQ4AAAAJ",
"link": "https://scholar.google.com/citations?user=n-0tXQ4AAAAJ&hl=en&oi=sra"
},
{
"name": "V Liévin",
"id": "OPkZ_uQAAAAJ",
"link": "https://scholar.google.com/citations?user=OPkZ_uQAAAAJ&hl=en&oi=sra"
}
]
},
{
"position": 3,
"title": "GPTQuant's Conversational AI: Simplifying Investment Research for All",
"data_cid": "W8PWvyJMSDIJ",
"link": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4380516",
"publication": "T Yue, CC Au - Available at SSRN 4380516, 2023 - papers.ssrn.com",
"snippet": "This paper presents GPTQuant, a conversational AI chatbot for developing and evaluating investment strategies. GPTQuant leverages prompt templates and LangChain's integration to …",
"inline_links": {
"cited_by": {
"cites_id": "3623229612350686043",
"total": 1,
"link": "https://scholar.google.com/scholar?cites=3623229612350686043&as_sdt=2005&sciodt=0,5&hl=en"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:W8PWvyJMSDIJ:scholar.google.com/&scioq=Langchain&hl=en&as_sdt=0,5",
"cached_page_link": "https://scholar.googleusercontent.com/scholar?q=cache:W8PWvyJMSDIJ:scholar.google.com/+Langchain&hl=en&as_sdt=0,5"
}
},
{
"position": 4,
"title": "From Prompt Injections to SQL Injection Attacks: How Protected is Your LLM-Integrated Web Application?",
"data_cid": "GZR1G06FsnsJ",
"link": "https://arxiv.org/abs/2308.01990",
"publication": "R Pedro, D Castro, P Carreira, N Santos - arXiv preprint arXiv:2308.01990, 2023 - arxiv.org",
"snippet": "… targeting web applications based on the Langchain framework. Using Langchain as our case study, … Our ndings indicate that LLM-integrated applications based on Langchain are highly …",
"inline_links": {
"versions": {
"cluster_id": "8913333183034266649",
"total": 2,
"link": "https://scholar.google.com/scholar?cluster=8913333183034266649&hl=en&as_sdt=0,5"
},
"cached_page_link": "https://scholar.googleusercontent.com/scholar?q=cache:GZR1G06FsnsJ:scholar.google.com/+Langchain&hl=en&as_sdt=0,5"
},
"resource": {
"name": "arxiv.org",
"format": "PDF",
"link": "https://arxiv.org/pdf/2308.01990"
},
"authors": [
{
"name": "D Castro",
"id": "uw3fmPgAAAAJ",
"link": "https://scholar.google.com/citations?user=uw3fmPgAAAAJ&hl=en&oi=sra"
},
{
"name": "P Carreira",
"id": "z_yhTPgAAAAJ",
"link": "https://scholar.google.com/citations?user=z_yhTPgAAAAJ&hl=en&oi=sra"
},
{
"name": "N Santos",
"id": "qIzrG3oAAAAJ",
"link": "https://scholar.google.com/citations?user=qIzrG3oAAAAJ&hl=en&oi=sra"
}
]
}
...
],
"pagination": {
"current": 1,
"next": "https://scholar.google.com/scholar?start=10&q=Langchain&hl=en&as_sdt=0,5",
"other_pages": {
"2": "https://scholar.google.com/scholar?start=10&q=Langchain&hl=en&as_sdt=0,5",
"3": "https://scholar.google.com/scholar?start=20&q=Langchain&hl=en&as_sdt=0,5",
"4": "https://scholar.google.com/scholar?start=30&q=Langchain&hl=en&as_sdt=0,5",
"5": "https://scholar.google.com/scholar?start=40&q=Langchain&hl=en&as_sdt=0,5",
"6": "https://scholar.google.com/scholar?start=50&q=Langchain&hl=en&as_sdt=0,5",
"7": "https://scholar.google.com/scholar?start=60&q=Langchain&hl=en&as_sdt=0,5",
"8": "https://scholar.google.com/scholar?start=70&q=Langchain&hl=en&as_sdt=0,5",
"9": "https://scholar.google.com/scholar?start=80&q=Langchain&hl=en&as_sdt=0,5",
"10": "https://scholar.google.com/scholar?start=90&q=Langchain&hl=en&as_sdt=0,5"
}
}
}
Cluster Search
https://www.searchapi.io/api/v1/search?cluster=10342765531442280392&engine=google_scholar
- 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",
"cluster": "10342765531442280392"
}
response = requests.get(url, params = params)
print(response.text)
{
"search_metadata": {
"id": "search_RqXLK4ZloPW8i54BgxM8z2jE",
"status": "Success",
"created_at": "2023-08-09T14:17:59Z",
"request_time_taken": 1.3,
"parsing_time_taken": 0.02,
"total_time_taken": 1.31,
"request_url": "https://scholar.google.com/scholar?hl=en&cluster=10342765531442280392",
"html_url": "https://www.searchapi.io/api/v1/searches/search_RqXLK4ZloPW8i54BgxM8z2jE.html",
"json_url": "https://www.searchapi.io/api/v1/searches/search_RqXLK4ZloPW8i54BgxM8z2jE"
},
"search_parameters": {
"engine": "google_scholar",
"google_domain": "google.com",
"hl": "en",
"cluster": "10342765531442280392"
},
"search_information": {
"total_results": 5,
"time_taken_displayed": 0.02
},
"organic_results": [
{
"position": 1,
"title": "OpenAI ChatGPT generated literature review: Digital twin in healthcare",
"data_cid": "yHfF2HPiiI8J",
"link": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4308687",
"publication": "Ö Aydın, E Karaarslan - Available at SSRN 4308687, 2022 - papers.ssrn.com",
"snippet": "Literature review articles are essential to summarise the related work in the selected field. However, covering all related studies takes too much time and effort. This study questions …",
"inline_links": {
"cited_by": {
"cites_id": "10342765531442280392",
"total": 135,
"link": "https://scholar.google.com/scholar?cites=10342765531442280392&as_sdt=5,47&sciodt=0,47&hl=en"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:yHfF2HPiiI8J:scholar.google.com/&scioq=&hl=en&as_sdt=0,47"
},
"authors": [
{
"name": "Ö Aydın",
"id": "cX5ncpcAAAAJ",
"link": "https://scholar.google.com/citations?user=cX5ncpcAAAAJ&hl=en&oi=sra"
},
{
"name": "E Karaarslan",
"id": "D3dqZ5UAAAAJ",
"link": "https://scholar.google.com/citations?user=D3dqZ5UAAAAJ&hl=en&oi=sra"
}
]
},
{
"position": 2,
"title": "OpenAI ChatGPT Generated Literature Review: Digital Twin in Healthcare",
"data_cid": "FWXv-oovQ_oJ",
"link": "https://www.researchgate.net/profile/Enis-Karaarslan/publication/366544498_OpenAI_ChatGPT_Generated_Literature_Review_Digital_Twin_in_Healthcare/links/63b7136b097c7832ca91cc34/OpenAI-ChatGPT-Generated-Literature-Review-Digital-Twin-in-Healthcare.pdf",
"publication": "Ö AYDIN, E Karaarslan - researchgate.net",
"snippet": "Literature review articles are essential to summarize the related work in the selected field. However, covering all related studies takes too much time and effort. This study questions …",
"resource": {
"name": "researchgate.net",
"format": "PDF",
"link": "https://www.researchgate.net/profile/Enis-Karaarslan/publication/366544498_OpenAI_ChatGPT_Generated_Literature_Review_Digital_Twin_in_Healthcare/links/63b7136b097c7832ca91cc34/OpenAI-ChatGPT-Generated-Literature-Review-Digital-Twin-in-Healthcare.pdf"
}
},
{
"position": 3,
"title": "OpenAI ChatGPT Generated Literature Review: Digital Twin in Healthcare",
"data_cid": "_u650oBr_1gJ",
"link": "http://194.27.153.46/xmlui/handle/20.500.12809/10483",
"publication": "Ö Aydın, E Karaarslan - 2022 - 194.27.153.46",
"snippet": "Literature review articles are essential to summarize the related work in the selected field. However, covering all related studies takes too much time and effort. This study questions …"
},
{
"position": 4,
"title": "OpenAI ChatGPT Generated Literature Review: Digital Twin in Healthcare",
"data_cid": "OMupxPiI4QgJ",
"link": "http://acikerisim.mu.edu.tr/xmlui/handle/20.500.12809/10483",
"publication": "Ö Aydın, E Karaarslan - 2022 - acikerisim.mu.edu.tr",
"snippet": "Literature review articles are essential to summarize the related work in the selected field. However, covering all related studies takes too much time and effort. This study questions …"
},
{
"position": 5,
"title": "OpenAI ChatGPT Generated Literature Review: Digital Twin in Healthcare",
"data_cid": "Iy8y3ZxfxGgJ",
"link": "https://www.researchgate.net/profile/Oemer-Aydin-9/publication/366544498_OpenAI_ChatGPT_Generated_Literature_Review_Digital_Twin_in_Healthcare/links/63b72a6ec3c99660ebcf9092/OpenAI-ChatGPT-Generated-Literature-Review-Digital-Twin-in-Healthcare.pdf",
"publication": "Ö AYDIN, E Karaarslan - researchgate.net",
"snippet": "Literature review articles are essential to summarize the related work in the selected field. However, covering all related studies takes too much time and effort. This study questions …",
"resource": {
"name": "researchgate.net",
"format": "PDF",
"link": "https://www.researchgate.net/profile/Oemer-Aydin-9/publication/366544498_OpenAI_ChatGPT_Generated_Literature_Review_Digital_Twin_in_Healthcare/links/63b72a6ec3c99660ebcf9092/OpenAI-ChatGPT-Generated-Literature-Review-Digital-Twin-in-Healthcare.pdf"
}
}
]
}
Cites Search
https://www.searchapi.io/api/v1/search?cites=10342765531442280392&engine=google_scholar
- 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",
"cites": "10342765531442280392"
}
response = requests.get(url, params = params)
print(response.text)
{
"search_metadata": {
"id": "search_AEM9arelpd2kFE2QoW0Nw8nB",
"status": "Success",
"created_at": "2023-08-09T14:19:11Z",
"request_time_taken": 1.44,
"parsing_time_taken": 0.03,
"total_time_taken": 1.47,
"request_url": "https://scholar.google.com/scholar?hl=en&cites=10342765531442280392",
"html_url": "https://www.searchapi.io/api/v1/searches/search_AEM9arelpd2kFE2QoW0Nw8nB.html",
"json_url": "https://www.searchapi.io/api/v1/searches/search_AEM9arelpd2kFE2QoW0Nw8nB"
},
"search_parameters": {
"engine": "google_scholar",
"google_domain": "google.com",
"hl": "en",
"cites": "10342765531442280392"
},
"search_information": {
"total_results": 135,
"page": 1,
"time_taken_displayed": 0.03
},
"organic_results": [
{
"position": 1,
"title": "“So what if ChatGPT wrote it?” Multidisciplinary perspectives on opportunities, challenges and implications of generative conversational AI for research …",
"data_cid": "gt4k4ov5NCUJ",
"link": "https://www.sciencedirect.com/science/article/pii/S0268401223000233",
"publication": "YK Dwivedi, N Kshetri, L Hughes, EL Slade… - International Journal of …, 2023 - Elsevier",
"snippet": "Transformative artificially intelligent tools, such as ChatGPT, designed to generate sophisticated text indistinguishable from that produced by a human, are applicable across a …",
"inline_links": {
"cited_by": {
"cites_id": "2681042057382125186",
"total": 250,
"link": "https://scholar.google.com/scholar?cites=2681042057382125186&as_sdt=2005&sciodt=0,5&hl=en"
},
"versions": {
"cluster_id": "2681042057382125186",
"total": 30,
"link": "https://scholar.google.com/scholar?cluster=2681042057382125186&hl=en&as_sdt=2005&sciodt=0,5"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:gt4k4ov5NCUJ:scholar.google.com/&scioq=&hl=en&as_sdt=2005&sciodt=0,5"
},
"resource": {
"name": "sciencedirect.com",
"format": "HTML",
"link": "https://www.sciencedirect.com/science/article/pii/S0268401223000233"
},
"authors": [
{
"name": "YK Dwivedi",
"id": "SQ_uDYIAAAAJ",
"link": "https://scholar.google.com/citations?user=SQ_uDYIAAAAJ&hl=en&oi=sra"
},
{
"name": "N Kshetri",
"id": "g-jALEoAAAAJ",
"link": "https://scholar.google.com/citations?user=g-jALEoAAAAJ&hl=en&oi=sra"
},
{
"name": "L Hughes",
"id": "y9Qd7N4AAAAJ",
"link": "https://scholar.google.com/citations?user=y9Qd7N4AAAAJ&hl=en&oi=sra"
},
{
"name": "EL Slade",
"id": "PEEBkvMAAAAJ",
"link": "https://scholar.google.com/citations?user=PEEBkvMAAAAJ&hl=en&oi=sra"
}
]
},
{
"position": 2,
"title": "ChatGPT utility in healthcare education, research, and practice: systematic review on the promising perspectives and valid concerns",
"data_cid": "oyqWW48DeTAJ",
"link": "https://www.mdpi.com/2227-9032/11/6/887",
"publication": "M Sallam - Healthcare, 2023 - mdpi.com",
"snippet": "ChatGPT is an artificial intelligence (AI)-based conversational large language model (LLM). The potential applications of LLMs in health care education, research, and practice could be …",
"inline_links": {
"cited_by": {
"cites_id": "3492826900254304931",
"total": 195,
"link": "https://scholar.google.com/scholar?cites=3492826900254304931&as_sdt=2005&sciodt=0,5&hl=en"
},
"versions": {
"cluster_id": "3492826900254304931",
"total": 7,
"link": "https://scholar.google.com/scholar?cluster=3492826900254304931&hl=en&as_sdt=2005&sciodt=0,5"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:oyqWW48DeTAJ:scholar.google.com/&scioq=&hl=en&as_sdt=2005&sciodt=0,5"
},
"resource": {
"name": "mdpi.com",
"format": "HTML",
"link": "https://www.mdpi.com/2227-9032/11/6/887"
},
"authors": [
{
"name": "M Sallam",
"id": "D8YI5xwAAAAJ",
"link": "https://scholar.google.com/citations?user=D8YI5xwAAAAJ&hl=en&oi=sra"
}
]
},
{
"position": 3,
"title": "ChatGPT: Bullshit spewer or the end of traditional assessments in higher education?",
"data_cid": "OioH5FXRIi0J",
"link": "https://journals.sfu.ca/jalt/index.php/jalt/article/download/689/539/3059",
"publication": "J Rudolph, S Tan, S Tan - Journal of Applied Learning and Teaching, 2023 - journals.sfu.ca",
"snippet": "ChatGPT is the world's most advanced chatbot thus far. Unlike other chatbots, it can create impressive prose within seconds, and it has created much hype and doomsday predictions …",
"inline_links": {
"cited_by": {
"cites_id": "3252392047743019578",
"total": 257,
"link": "https://scholar.google.com/scholar?cites=3252392047743019578&as_sdt=2005&sciodt=0,5&hl=en"
},
"versions": {
"cluster_id": "3252392047743019578",
"total": 4,
"link": "https://scholar.google.com/scholar?cluster=3252392047743019578&hl=en&as_sdt=2005&sciodt=0,5"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:OioH5FXRIi0J:scholar.google.com/&scioq=&hl=en&as_sdt=2005&sciodt=0,5"
},
"resource": {
"name": "sfu.ca",
"format": "PDF",
"link": "https://journals.sfu.ca/jalt/index.php/jalt/article/download/689/539/3059"
},
"authors": [
{
"name": "J Rudolph",
"id": "YdHbji4AAAAJ",
"link": "https://scholar.google.com/citations?user=YdHbji4AAAAJ&hl=en&oi=sra"
},
{
"name": "S Tan",
"id": "TXR85F0AAAAJ",
"link": "https://scholar.google.com/citations?user=TXR85F0AAAAJ&hl=en&oi=sra"
},
{
"name": "S Tan",
"id": "bivOQXUAAAAJ",
"link": "https://scholar.google.com/citations?user=bivOQXUAAAAJ&hl=en&oi=sra"
}
]
},
{
"position": 4,
"title": "ChatGPT for (finance) research: The Bananarama conjecture",
"data_cid": "WJ8S75lyjAgJ",
"link": "https://www.sciencedirect.com/science/article/pii/S1544612323000363",
"publication": "M Dowling, B Lucey - Finance Research Letters, 2023 - Elsevier",
"snippet": "We show, based on ratings by finance journal reviewers of generated output, that the recently released AI chatbot ChatGPT can significantly assist with finance research. In …",
"inline_links": {
"cited_by": {
"cites_id": "615993254509453144",
"total": 130,
"link": "https://scholar.google.com/scholar?cites=615993254509453144&as_sdt=2005&sciodt=0,5&hl=en"
},
"versions": {
"cluster_id": "615993254509453144",
"total": 8,
"link": "https://scholar.google.com/scholar?cluster=615993254509453144&hl=en&as_sdt=2005&sciodt=0,5"
},
"related_articles_link": "https://scholar.google.com/scholar?q=related:WJ8S75lyjAgJ:scholar.google.com/&scioq=&hl=en&as_sdt=2005&sciodt=0,5"
},
"resource": {
"name": "sciencedirect.com",
"format": "HTML",
"link": "https://www.sciencedirect.com/science/article/pii/S1544612323000363"
},
"authors": [
{
"name": "M Dowling",
"id": "jylUiy0AAAAJ",
"link": "https://scholar.google.com/citations?user=jylUiy0AAAAJ&hl=en&oi=sra"
},
{
"name": "B Lucey",
"id": "WGptVJMAAAAJ",
"link": "https://scholar.google.com/citations?user=WGptVJMAAAAJ&hl=en&oi=sra"
}
]
},
...
],
"pagination": {
"current": 1,
"next": "https://scholar.google.com/scholar?start=10&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"other_pages": [
"https://scholar.google.com/scholar?start=10&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=20&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=30&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=40&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=50&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=60&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=70&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=80&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc=",
"https://scholar.google.com/scholar?start=90&hl=en&as_sdt=2005&sciodt=0,5&cites=10342765531442280392&scipsc="
]
}
}
Profiles
https://www.searchapi.io/api/v1/search?engine=google_scholar&q=author%3AIlya+Sutskever
- 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",
"q": "author:Ilya Sutskever"
}
response = requests.get(url, params = params)
print(response.text)
{
...
"profiles": [
{
"author_id": "x04W_mMAAAAJ",
"name": "Ilya Sutskever",
"link": "https://scholar.google.com/citations?user=x04W_mMAAAAJ&hl=en&oi=ao",
"affiliations": "Co-Founder and Chief Scientist of OpenAI",
"email": "Verified email at openai.com",
"cited_by": {
"total": 422635
}
}
]
...
}
Related Searches
https://www.searchapi.io/api/v1/search?engine=google_scholar&q=AI
- 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",
"q": "AI"
}
response = requests.get(url, params = params)
print(response.text)
{
...
"related_searches": [
{
"query": "mario ai championship",
"highlighted": [
"mario",
"championship"
],
"link": "https://scholar.google.com/scholar?hl=en&as_sdt=0,33&qsp=1&q=mario+ai+championship&qst=ir"
},
{
"query": "ethics of ai ethics",
"highlighted": [
"ethics of",
"ethics"
],
"link": "https://scholar.google.com/scholar?hl=en&as_sdt=0,33&qsp=2&q=ethics+of+ai+ethics&qst=ir"
},
{
"query": "mario ai framework",
"highlighted": [
"mario",
"framework"
],
"link": "https://scholar.google.com/scholar?hl=en&as_sdt=0,33&qsp=3&q=mario+ai+framework&qst=ir"
},
{
"query": "mario ai competition",
"highlighted": [
"mario",
"competition"
],
"link": "https://scholar.google.com/scholar?hl=en&as_sdt=0,33&qsp=4&q=mario+ai+competition&qst=ir"
}
],
...
}