Serpdog's Documentation
HomeLoginSupport
  • Getting Started
  • Account API
  • Web Scraping API
  • Yelp Search API
  • Walmart Scraper API
  • Amazon Scraper API
  • LinkedIn Jobs API
  • YouTube Search API
  • Bing Search API
  • Google Search API
  • Google Maps API
    • Google Maps Posts API
    • Google Maps Photos API
    • Google Maps Reviews API
  • Google News API
  • Google Finance API
  • Google Videos API
  • Google Images API
  • Google Autocomplete API
  • Google Shopping API
  • Google Product API
  • Google Scholar API
    • Google Scholar Author Profile API
  • Google Jobs API
Powered by GitBook
On this page
  1. Google Scholar API

Google Scholar Author Profile API

Using this API, you get the JSON data of Google Scholar Author Profile results consisting of author details, articles, co-authors and more.

Here is the list of default parameters you can use with this API:

Parameters
Description

api_key

required

This is your API key.

author_id required

Author ID of the person you want to get data for.

num

Type: Number(Integer) Number of results per page

hl

Type: String

Default Value: "en_us" The language of the requested results.

view_op

The parameter allows users to access specific sections of a page, offering two choices:

  • Use "view_citation" to display citations. It requires the citation ID.

  • Opt for "list_colleagues" to view all co-authors.

sort

The parameter is utilized to organize and narrow down articles. The available options are:

  • "title": Sorts articles based on their titles.

  • "pubdate": Sorts articles by their publication dates.

citation_id

The parameter is essential for fetching the citation of individual articles. It's mandatory when choosing "view_op=view_citation" and allows access to IDs within our structured JSON response.

cURL "https://api.serpdog.io/scholar_author?api_key=APIKEY&author_id=LSsXyncAAAAJ"
const axios = require('axios');

axios.get('https://api.serpdog.io/scholar_author?api_key=APIKEY&author_id=LSsXyncAAAAJ')
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });
import requests
payload = {'api_key': 'APIKEY', 'author_id':'LSsXyncAAAAJ'}
resp = requests.get('https://api.serpdog.io/scholar_author', params=payload)
print (resp.text)
try {
 String url = "https://api.serpdog.io/scholar_author?api_key=APIKEY&author_id=LSsXyncAAAAJ";
 URL urlForGetRequest = new URL(url);
 String readLine = null;
 HttpURLConnection conection = (HttpURLConnection) urlForGetRequest.openConnection();
 conection.setRequestMethod("GET");
 int responseCode = conection.getResponseCode();
 if (responseCode == HttpURLConnection.HTTP_OK) {
 BufferedReader in = new BufferedReader(new InputStreamReader(conection.getInputStream()));
 StringBuffer response = new StringBuffer();
 while ((readLine = in.readLine()) != null) {
 response.append(readLine);
 }
 in.close();
 System.out.println(response.toString());
} else {
 throw new Exception("Error in API Call");
 }
} catch (Exception ex) {
 ex.printStackTrace();
}
require 'net/http'
require 'json'
params = {
 :api_key => "APIKEY",
 :author_id=> "LSsXyncAAAAJ"
}
uri = URI('https://api.serpdog.io/scholar_author')
uri.query = URI.encode_www_form(params)
website_content = Net::HTTP.get(uri)
print(website_content)
<?php
$url = "https://api.serpdog.io/scholar_author?api_key=APIKEY&author_id=LSsXyncAAAAJ";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
{
  "meta": {
    "api_key": "APIKEY",
    "author_id": "LSsXyncAAAAJ"
  },
  "author": {
    "name": "Cliff Meyer",
    "affiliations": "Dana-Farber Cancer Institute and Harvard T.H. Chan School of Public Health",
    "email": "Verified email at jimmy.harvard.edu",
    "interests": [
      {
        "title": "Computational Biology",
        "link": "https://scholar.google.com/citations?view_op=search_authors&hl=en&mauthors=label:computational_biology"
      },
      {
        "title": "Epigenetics",
        "link": "https://scholar.google.com/citations?view_op=search_authors&hl=en&mauthors=label:epigenetics"
      },
      {
        "title": "Gene Regulation",
        "link": "https://scholar.google.com/citations?view_op=search_authors&hl=en&mauthors=label:gene_regulation"
      },
      {
        "title": "Genomics",
        "link": "https://scholar.google.com/citations?view_op=search_authors&hl=en&mauthors=label:genomics"
      },
      {
        "title": "Transcription Factors",
        "link": "https://scholar.google.com/citations?view_op=search_authors&hl=en&mauthors=label:transcription_factors"
      }
    ],
    "thumbnail": "https://scholar.google.com/citations/images/avatar_scholar_128.png"
  },
  "articles": [
    {
      "title": "Model-based analysis of ChIP-Seq (MACS)",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:2osOgNQ5qMEC",
      "citation_id": "LSsXyncAAAAJ:2osOgNQ5qMEC",
      "authors": "Y Zhang, T Liu, CA Meyer, J Eeckhoute, DS Johnson, BE Bernstein, ...",
      "publication": "Genome biology 9, 1-9, 2008",
      "cited_by": {
        "value": "15249",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=14252090027271643524",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=14252090027271643524&hl=en",
        "citation_id": "14252090027271643524"
      },
      "year": "2008"
    },
    {
      "title": "Genome-wide analysis of estrogen receptor binding sites",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:9yKSN-GCB0IC",
      "citation_id": "LSsXyncAAAAJ:9yKSN-GCB0IC",
      "authors": "JS Carroll, CA Meyer, J Song, W Li, TR Geistlinger, J Eeckhoute, ...",
      "publication": "Nature genetics 38 (11), 1289-1297, 2006",
      "cited_by": {
        "value": "1624",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=7951096779388712529",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=7951096779388712529&hl=en",
        "citation_id": "7951096779388712529"
      },
      "year": "2006"
    },
    {
      "title": "Chromosome-wide mapping of estrogen receptor binding reveals long-range regulation requiring the forkhead protein FoxA1",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:d1gkVwhDpl0C",
      "citation_id": "LSsXyncAAAAJ:d1gkVwhDpl0C",
      "authors": "JS Carroll, XS Liu, AS Brodsky, W Li, CA Meyer, AJ Szary, J Eeckhoute, ...",
      "publication": "Cell 122 (1), 33-43, 2005",
      "cited_by": {
        "value": "1558",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=12018554524946333077",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=12018554524946333077&hl=en",
        "citation_id": "12018554524946333077"
      },
      "year": "2005"
    },
    {
      "title": "FoxA1 translates epigenetic signatures into enhancer-driven lineage-specific transcription",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:UeHWp8X0CEIC",
      "citation_id": "LSsXyncAAAAJ:UeHWp8X0CEIC",
      "authors": "M Lupien, J Eeckhoute, CA Meyer, Q Wang, Y Zhang, W Li, JS Carroll, ...",
      "publication": "Cell 132 (6), 958-970, 2008",
      "cited_by": {
        "value": "1098",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=11112848724269661604",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=11112848724269661604&hl=en",
        "citation_id": "11112848724269661604"
      },
      "year": "2008"
    },
    {
      "title": "Androgen receptor regulates a distinct transcription program in androgen-independent prostate cancer",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:_kc_bZDykSQC",
      "citation_id": "LSsXyncAAAAJ:_kc_bZDykSQC",
      "authors": "Q Wang, W Li, Y Zhang, X Yuan, K Xu, J Yu, Z Chen, R Beroukhim, ...",
      "publication": "Cell 138 (2), 245-256, 2009",
      "cited_by": {
        "value": "1073",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=15942606360659954185",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=15942606360659954185&hl=en",
        "citation_id": "15942606360659954185"
      },
      "year": "2009"
    },
    {
      "title": "Handbook of test problems in local and global optimization",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:d3xjRt2Mi1YC",
      "citation_id": "LSsXyncAAAAJ:d3xjRt2Mi1YC",
      "authors": "CA Floudas, PM Pardalos, C Adjiman, WR Esposito, ZH Gümüs, ...",
      "publication": "Springer Science & Business Media, 2013",
      "cited_by": {
        "value": "920",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=10764070690182668063",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=10764070690182668063&hl=en",
        "citation_id": "10764070690182668063"
      },
      "year": "2013"
    },
    {
      "title": "Cistrome: an integrative platform for transcriptional regulation studies",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:ULOm3_A8WrAC",
      "citation_id": "LSsXyncAAAAJ:ULOm3_A8WrAC",
      "authors": "T Liu, JA Ortiz, L Taing, CA Meyer, B Lee, Y Zhang, H Shin, SS Wong, ...",
      "publication": "Genome biology 12, 1-10, 2011",
      "cited_by": {
        "value": "731",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=17374025607959613119",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=17374025607959613119&hl=en",
        "citation_id": "17374025607959613119"
      },
      "year": "2011"
    },
    {
      "title": "Sequence determinants of improved CRISPR sgRNA design",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:dHRcJqc9SEQC",
      "citation_id": "LSsXyncAAAAJ:dHRcJqc9SEQC",
      "authors": "H Xu, T Xiao, CH Chen, W Li, CA Meyer, Q Wu, D Wu, L Cong, F Zhang, ...",
      "publication": "Genome research 25 (8), 1147-1157, 2015",
      "cited_by": {
        "value": "659",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=8051706563218438872",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=8051706563218438872&hl=en",
        "citation_id": "8051706563218438872"
      },
      "year": "2015"
    },
    {
      "title": "Response and resistance to BET bromodomain inhibitors in triple-negative breast cancer",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:PD-wXv1Sh1EC",
      "citation_id": "LSsXyncAAAAJ:PD-wXv1Sh1EC",
      "authors": "S Shu, CY Lin, HH He, RM Witwicki, DP Tabassum, JM Roberts, ...",
      "publication": "Nature 529 (7586), 413-417, 2016",
      "cited_by": {
        "value": "597",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=6034776638941878499",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=6034776638941878499&hl=en",
        "citation_id": "6034776638941878499"
      },
      "year": "2016"
    },
    {
      "title": "Cistrome Data Browser: expanded datasets and new tools for gene regulatory analysis",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:6xXPb0EiZccC",
      "citation_id": "LSsXyncAAAAJ:6xXPb0EiZccC",
      "authors": "R Zheng, C Wan, S Mei, Q Qin, Q Wu, H Sun, CH Chen, M Brown, ...",
      "publication": "Nucleic acids research 47 (D1), D729-D735, 2019",
      "cited_by": {
        "value": "578",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=14138633253049970899",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=14138633253049970899&hl=en",
        "citation_id": "14138633253049970899"
      },
      "year": "2019"
    },
    {
      "title": "Nucleosome dynamics define transcriptional enhancers",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:zYLM7Y9cAGgC",
      "citation_id": "LSsXyncAAAAJ:zYLM7Y9cAGgC",
      "authors": "HH He, CA Meyer, H Shin, ST Bailey, G Wei, Q Wang, Y Zhang, K Xu, ...",
      "publication": "Nature genetics 42 (4), 343-347, 2010",
      "cited_by": {
        "value": "548",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=2838072376856188369",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=2838072376856188369&hl=en",
        "citation_id": "2838072376856188369"
      },
      "year": "2010"
    },
    {
      "title": "Model-based analysis of tiling-arrays for ChIP-chip",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:qjMakFHDy7sC",
      "citation_id": "LSsXyncAAAAJ:qjMakFHDy7sC",
      "authors": "WE Johnson, W Li, CA Meyer, R Gottardo, JS Carroll, M Brown, XS Liu",
      "publication": "Proceedings of the National Academy of Sciences 103 (33), 12457-12462, 2006",
      "cited_by": {
        "value": "500",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=1358376576284677270",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=1358376576284677270&hl=en",
        "citation_id": "1358376576284677270"
      },
      "year": "2006"
    },
    {
      "title": "Cistrome Data Browser: a data portal for ChIP-Seq and chromatin accessibility data in human and mouse",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:ddB7do2jUx8C",
      "citation_id": "LSsXyncAAAAJ:ddB7do2jUx8C",
      "authors": "S Mei, Q Qin, Q Wu, H Sun, R Zheng, C Zang, M Zhu, J Wu, X Shi, L Taing, ...",
      "publication": "Nucleic acids research, gkw983, 2016",
      "cited_by": {
        "value": "471",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=4410185230290837678",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=4410185230290837678&hl=en",
        "citation_id": "4410185230290837678"
      },
      "year": "2016"
    },
    {
      "title": "Target analysis by integration of transcriptome and ChIP-seq data with BETA",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:-f6ydRqryjwC",
      "citation_id": "LSsXyncAAAAJ:-f6ydRqryjwC",
      "authors": "S Wang, H Sun, J Ma, C Zang, C Wang, J Wang, Q Tang, CA Meyer, ...",
      "publication": "Nature protocols 8 (12), 2502-2515, 2013",
      "cited_by": {
        "value": "453",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=11247023303941198579",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=11247023303941198579&hl=en",
        "citation_id": "11247023303941198579"
      },
      "year": "2013"
    },
    {
      "title": "GFOLD: a generalized fold change for ranking differentially expressed genes from RNA-seq data",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:qxL8FJ1GzNcC",
      "citation_id": "LSsXyncAAAAJ:qxL8FJ1GzNcC",
      "authors": "J Feng, CA Meyer, Q Wang, JS Liu, X Shirley Liu, Y Zhang",
      "publication": "Bioinformatics 28 (21), 2782-2788, 2012",
      "cited_by": {
        "value": "449",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=6894479640681805797",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=6894479640681805797&hl=en",
        "citation_id": "6894479640681805797"
      },
      "year": "2012"
    },
    {
      "title": "Identifying and mitigating bias in next-generation sequencing methods for chromatin biology",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:9w9GTvUEN2YC",
      "citation_id": "LSsXyncAAAAJ:9w9GTvUEN2YC",
      "authors": "CA Meyer, XS Liu",
      "publication": "Nature Reviews Genetics 15 (11), 709-721, 2014",
      "cited_by": {
        "value": "366",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=11159811728131830222",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=11159811728131830222&hl=en",
        "citation_id": "11159811728131830222"
      },
      "year": "2014"
    },
    {
      "title": "Transcriptional role of cyclin D1 in development revealed by a genetic–proteomic screen",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:YsMSGLbcyi4C",
      "citation_id": "LSsXyncAAAAJ:YsMSGLbcyi4C",
      "authors": "F Bienvenu, S Jirawatnotai, JE Elias, CA Meyer, K Mizeracka, A Marson, ...",
      "publication": "Nature 463 (7279), 374-378, 2010",
      "cited_by": {
        "value": "308",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=12805243605128962004",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=12805243605128962004&hl=en",
        "citation_id": "12805243605128962004"
      },
      "year": "2010"
    },
    {
      "title": "Global optimization in the 21st century: Advances and challenges",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:cG0OFEevkNgC",
      "citation_id": "LSsXyncAAAAJ:cG0OFEevkNgC",
      "authors": "CA Floudas, IG Akrotirianakis, S Caratzoulas, CA Meyer, J Kallrath",
      "publication": "Computers & Chemical Engineering 29 (6), 1185-1202, 2005",
      "cited_by": {
        "value": "265",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=10325778143928198840",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=10325778143928198840&hl=en",
        "citation_id": "10325778143928198840"
      },
      "year": "2005"
    },
    {
      "title": "Refined DNase-seq protocol and data analysis reveals intrinsic bias in transcription factor footprint identification",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:KEtq3P1Vf8oC",
      "citation_id": "LSsXyncAAAAJ:KEtq3P1Vf8oC",
      "authors": "HH He, CA Meyer, SS Hu, MW Chen, C Zang, Y Liu, PK Rao, T Fei, H Xu, ...",
      "publication": "Nature methods 11 (1), 73-78, 2014",
      "cited_by": {
        "value": "259",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=1695652780519710422",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=1695652780519710422&hl=en",
        "citation_id": "1695652780519710422"
      },
      "year": "2014"
    },
    {
      "title": "Differentiation-specific histone modifications reveal dynamic chromatin interactions and partners for the intestinal transcription factor CDX2",
      "link": "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=LSsXyncAAAAJ&citation_for_view=LSsXyncAAAAJ:Se3iqnhoufwC",
      "citation_id": "LSsXyncAAAAJ:Se3iqnhoufwC",
      "authors": "MP Verzi, H Shin, HH He, R Sulahian, CA Meyer, RK Montgomery, ...",
      "publication": "Developmental cell 19 (5), 713-726, 2010",
      "cited_by": {
        "value": "232",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=717611205060357137",
        "serpdog_link": "https://api.serpdog.io/scholar?cites=717611205060357137&hl=en",
        "citation_id": "717611205060357137"
      },
      "year": "2010"
    }
  ],
  "cited_by": {
    "table": [
      {
        "citations": {
          "all": 16621,
          "since_2019": null
        }
      },
      {
        "h_index": {
          "all": 41,
          "since_2019": null
        }
      },
      {
        "i10_index": {
          "all": 63,
          "since_2019": null
        }
      }
    ],
    "graph": [
      {
        "year": "2006",
        "citations": "152"
      },
      {
        "year": "2007",
        "citations": "318"
      },
      {
        "year": "2008",
        "citations": "494"
      },
      {
        "year": "2009",
        "citations": "619"
      },
      {
        "year": "2010",
        "citations": "811"
      },
      {
        "year": "2011",
        "citations": "1067"
      },
      {
        "year": "2012",
        "citations": "1367"
      },
      {
        "year": "2013",
        "citations": "1453"
      },
      {
        "year": "2014",
        "citations": "1597"
      },
      {
        "year": "2015",
        "citations": "1526"
      },
      {
        "year": "2016",
        "citations": "1808"
      },
      {
        "year": "2017",
        "citations": "2004"
      },
      {
        "year": "2018",
        "citations": "2169"
      },
      {
        "year": "2019",
        "citations": "2599"
      },
      {
        "year": "2020",
        "citations": "2735"
      },
      {
        "year": "2021",
        "citations": "3331"
      },
      {
        "year": "2022",
        "citations": "3367"
      },
      {
        "year": "2023",
        "citations": "3296"
      },
      {
        "year": "2024",
        "citations": "1292"
      }
    ]
  },
  "public_access": {
    "link": "https://scholar.google.com/citations?view_op=list_mandates&hl=en&user=LSsXyncAAAAJ",
    "available": "67",
    "not_available": "1"
  },
  "co_authors": [
    {
      "name": "Xiaole Shirley Liu",
      "link": "https://scholar.google.com/citations?user=8XNfVucAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=8XNfVucAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "8XNfVucAAAAJ",
      "affiliations": "CEO, GV20 Therapeutics",
      "emails": "Verified email at ds.dfci.harvard.edu"
    },
    {
      "name": "Myles Brown",
      "link": "https://scholar.google.com/citations?user=wwxk-JMAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=wwxk-JMAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "wwxk-JMAAAAJ",
      "affiliations": "Emil Frei III Professor of Medicine, Dana-Farber Cancer Institute and Harvard Medical School",
      "emails": "Verified email at dfci.harvard.edu"
    },
    {
      "name": "Yong Zhang 张勇",
      "link": "https://scholar.google.com/citations?user=rGF5Q9sAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=rGF5Q9sAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "rGF5Q9sAAAAJ",
      "affiliations": "Professor of Bioinformatics, Tongji University",
      "emails": "Verified email at tongji.edu.cn"
    },
    {
      "name": "Tao Liu",
      "link": "https://scholar.google.com/citations?user=04GHe_kAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=04GHe_kAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "04GHe_kAAAAJ",
      "affiliations": "Associate Professor, Roswell Park Comprehensive Cancer Center",
      "emails": "Verified email at roswellpark.org"
    },
    {
      "name": "Wei Li",
      "link": "https://scholar.google.com/citations?user=7IUCbE4AAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=7IUCbE4AAAAJ&hl=en&api_key=APIKEY",
      "author_id": "7IUCbE4AAAAJ",
      "affiliations": "Professor of Bioinformatics, University of California Irvine; Baylor College of Medicine",
      "emails": "Verified email at uci.edu"
    },
    {
      "name": "Jason Carroll",
      "link": "https://scholar.google.com/citations?user=yR98Q94AAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=yR98Q94AAAAJ&hl=en&api_key=APIKEY",
      "author_id": "yR98Q94AAAAJ",
      "affiliations": "University of Cambridge",
      "emails": "Verified email at cruk.cam.ac.uk"
    },
    {
      "name": "Chongzhi Zang",
      "link": "https://scholar.google.com/citations?user=GV7vSDMAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=GV7vSDMAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "GV7vSDMAAAAJ",
      "affiliations": "Associate Professor, University of Virginia",
      "emails": "Verified email at virginia.edu"
    },
    {
      "name": "Mathieu Lupien, Ph.D.",
      "link": "https://scholar.google.com/citations?user=tepqzFEAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=tepqzFEAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "tepqzFEAAAAJ",
      "affiliations": "Senior Scientist/Professor, Princess Margaret Cancer Centre",
      "emails": "Verified email at uhnresearch.ca"
    },
    {
      "name": "Alvin Qin",
      "link": "https://scholar.google.com/citations?user=0v2kH8QAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=0v2kH8QAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "0v2kH8QAAAAJ",
      "affiliations": "Broad Institute",
      "emails": "Verified email at broadinstitute.org"
    },
    {
      "name": "Housheng Hansen He",
      "link": "https://scholar.google.com/citations?user=XQI8DIEAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=XQI8DIEAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "XQI8DIEAAAAJ",
      "affiliations": "Princess Margaret Cancer Centre, University Health Network; Department of Medical Biophysics",
      "emails": "Verified email at uhnresearch.ca"
    },
    {
      "name": "Christodoulos A. Floudas",
      "link": "https://scholar.google.com/citations?user=338T-eEAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=338T-eEAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "338T-eEAAAAJ",
      "affiliations": "Director, Texas A&M Energy Institute, Erle Nye '59 Chair Professor for Engineering Excellence",
      "emails": "Verified email at tamu.edu"
    },
    {
      "name": "Pamela Silver",
      "link": "https://scholar.google.com/citations?user=X-8ViBEAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=X-8ViBEAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "X-8ViBEAAAAJ",
      "affiliations": "Professor of Systems Biology, Harvard Medical School",
      "emails": "Verified email at hms.harvard.edu"
    },
    {
      "name": "Alexander S. Brodsky",
      "link": "https://scholar.google.com/citations?user=tsky7fYAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=tsky7fYAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "tsky7fYAAAAJ",
      "affiliations": "Rhode Island Hospital/Brown University",
      "emails": "Verified email at brown.edu"
    },
    {
      "name": "Rongbin Zheng",
      "link": "https://scholar.google.com/citations?user=wuR7oA4AAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=wuR7oA4AAAAJ&hl=en&api_key=APIKEY",
      "author_id": "wuR7oA4AAAAJ",
      "affiliations": "Postdoc @ Boston Children's Hospital / Harvard Medical School",
      "emails": "Verified email at childrens.harvard.edu"
    },
    {
      "name": "Len Taing",
      "link": "https://scholar.google.com/citations?user=3gEM7N8AAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=3gEM7N8AAAAJ&hl=en&api_key=APIKEY",
      "author_id": "3gEM7N8AAAAJ",
      "affiliations": "Dana-Farber Cancer Institute",
      "emails": "Verified email at jimmy.harvard.edu"
    },
    {
      "name": "Shenglin Mei",
      "link": "https://scholar.google.com/citations?user=MntNsM8AAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=MntNsM8AAAAJ&hl=en&api_key=APIKEY",
      "author_id": "MntNsM8AAAAJ",
      "affiliations": "Massachusetts General Hospital and Harvard Medical School",
      "emails": "Verified email at hms.harvard.edu"
    },
    {
      "name": "Changxin Wan",
      "link": "https://scholar.google.com/citations?user=hQ8LN_oAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=hQ8LN_oAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "hQ8LN_oAAAAJ",
      "affiliations": "Duke University",
      "emails": "Verified email at duke.edu"
    },
    {
      "name": "Hanfei Sun",
      "link": "https://scholar.google.com/citations?user=DdEVWRcAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=DdEVWRcAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "DdEVWRcAAAAJ",
      "affiliations": "None",
      "emails": "Verified email at cmu.edu"
    },
    {
      "name": "Jun S Liu",
      "link": "https://scholar.google.com/citations?user=-bHzVq8AAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=-bHzVq8AAAAJ&hl=en&api_key=APIKEY",
      "author_id": "-bHzVq8AAAAJ",
      "affiliations": "Professor of statistics, Harvard University",
      "emails": "Verified email at stat.harvard.edu"
    },
    {
      "name": "Richard M. Myers",
      "link": "https://scholar.google.com/citations?user=uNSng0gAAAAJ&hl=en",
      "serpdog_link": "https://api.serpdog.io/scholar_author?author_id=uNSng0gAAAAJ&hl=en&api_key=APIKEY",
      "author_id": "uNSng0gAAAAJ",
      "affiliations": "HudsonAlpha Institute for Biotechnology",
      "emails": "Verified email at hudsonalpha.com"
    }
  ],
  "pagination": {
    "next": "https://api.serpdog.io/scholar_author?author_id=LSsXyncAAAAJ&hl=en&page=20&api_key=APIKEY"
  }
}
PreviousGoogle Scholar APINextGoogle Jobs API

Last updated 1 year ago