Google Scholar Author Cited By API
Google Scholar Author Cited By API allows a user to scrape the cited by results of a Google Scholar Author search. SerpApi is able to scrape, extract, and make sense of this information. When SerpApi encounters citation results, we add them to our JSON output. We are able to extract: table
and graph
results. From table
results we are extracting citations
, h_index
and i10_index
results. From graph
results we are extracting year
and citations
results.
- •
h-index
is the largest number h such that h publications have at least h citations. The second column has the "recent" version of this metric which is the largest number h such that h publications have at least h new citations in the last 5 years. - •
i10-index
is the number of publications with at least 10 citations. The second column has the "recent" version of this metric which is the number of publications that have received at least 10 new citations in the last 5 years.
API Examples
Cited by results overview
{
...
"cited_by": {
"table": [
{
"citations": {
"all": 466834,
"since_2016": 184564
}
},
{
"h_index": {
"all": 314,
"since_2016": 197
}
},
{
"i10_index": {
"all": 1164,
"since_2016": 936
}
}
],
"graph": [
{
"year": 1993,
"citations": 1180
},
{
"year": 1994,
"citations": 1553
},
{
"year": 1995,
"citations": 1981
},
...
]
},
...
}