# Google Scholar Author API

You have to send a GET request to **`http://api.scrapingdog.com/google_scholar/author`** with the below-given parameters.

### Parameters

| Paramter                                                             | Description                                                                                                                                                                                                                                                                         |
| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p>api\_key<br></p><p><mark style="color:red;">required</mark></p>   | <p>Your personal API key. Available on your dashboard <br><br>Type: <em><strong>String</strong></em></p>                                                                                                                                                                            |
| <p>author\_id<br></p><p><mark style="color:red;">required</mark></p> | <p>Author ID of the person you want to get data for.<br><br>Type: <em><strong>String</strong></em></p>                                                                                                                                                                              |
| results                                                              | <p>Number of results per page.<br><br>Type: <code>Number(Integer)</code></p>                                                                                                                                                                                                        |
| language                                                             | <p>Language of the results. Possible Values - <strong><code>en</code></strong>, <strong><code>es</code></strong>, <strong><code>fr</code></strong>, <strong><code>de</code></strong>, etc. <br><br>Default Value - en<br><br>Type - <strong>String</strong></p>                     |
| view\_op                                                             | <p></p><p>The parameter allows users to access specific sections of a page, offering two choices:</p><ul><li>Use "<code>view\_citation</code>" to display citations. It requires the citation ID.</li><li>Opt for "<code>list\_colleagues</code>" to view all co-authors.</li></ul> |
| sort                                                                 | <p></p><p>The parameter is utilized to organize and narrow down articles. The available options are:</p><ul><li>"<code>title</code>": Sorts articles based on their titles.</li><li>"<code>pubdate</code>": Sorts articles by their publication dates.</li></ul>                    |
| 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.                                                                                   |

### API Example

{% tabs %}
{% tab title="cURL" %}

```json
cURL "https://api.scrapingdog.com/google_scholar/author?api_key=APIKEY&author_id=LSsXyncAAAAJ"
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/google_scholar/author"

params = {
    "api_key": api_key,
    "author_id": "LSsXyncAAAAJ"
}

response = requests.get(url, params=params)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print(f"Request failed with status code: {response.status_code}")

```

{% endtab %}

{% tab title="Node JS " %}

```javascript
const axios = require('axios');

const api_key = '5eaa61a6e562fc52fe763tr516e4653';
const url = 'https://api.scrapingdog.com/google_scholar/author';

const params = {
  api_key: api_key,
  author_id: 'LSsXyncAAAAJ'
};

axios
  .get(url, { params: params })
  .then(function (response) {
    if (response.status === 200) {
      const data = response.data;
      console.log(data)
    } else {
      console.log('Request failed with status code: ' + response.status);
    }
  })
  .catch(function (error) {
    console.error('Error making the request: ' + error.message);
  });

```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

// Set the API key and request parameters
$api_key = '5eaa61a6e562fc52fe763tr516e4653';
$author_id = 'LSsXyncAAAAJ';

// Set the API endpoint
$url = 'https://api.scrapingdog.com/google_scholar/author/?api_key=' . $api_key . '&author_id=' . $author_id;

// Initialize cURL session
$ch = curl_init($url);

// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Execute the cURL request
$response = curl_exec($ch);

// Check if the request was successful
if ($response === false) {
    echo 'cURL error: ' . curl_error($ch);
} else {
    // Process the response data as needed
    echo $response;
}

// Close the cURL session
curl_close($ch);

```

{% endtab %}

{% tab title="Ruby" %}

```ruby
require 'net/http'
require 'uri'

# Set the API key and request parameters
api_key = '5eaa61a6e562fc52fe763tr516e4653'
author_id = 'LSsXyncAAAAJ'

# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/google_scholar/author/?api_key=#{api_key}&author_id=#{author_id}")

# Create an HTTP GET request
request = Net::HTTP::Get.new(url)

# Create an HTTP client
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true # Enable SSL (https)

# Send the request and get the response
response = http.request(request)

# Check if the request was successful
if response.is_a?(Net::HTTPSuccess)
  puts response.body # Process the response data as needed
else
  puts "HTTP request failed with code: #{response.code}, message: #{response.message}"
end

```

{% endtab %}

{% tab title="Java" %}

```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            // Set the API key and request parameters
            String apiKey = "5eaa61a6e562fc52fe763tr516e4653";
            String author_id = "LSsXyncAAAAJ";

            // Construct the API endpoint URL
            String apiUrl = "https://api.scrapingdog.com/google_scholar/author/?api_key=" + apiKey
                    + "&author_id =" + author_id 

            // Create a URL object from the API URL string
            URL url = new URL(apiUrl);

            // Open a connection to the URL
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            // Set the request method to GET
            connection.setRequestMethod("GET");

            // Get the response code
            int responseCode = connection.getResponseCode();

            if (responseCode == 200) {
                // Read the response from the connection
                BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                String inputLine;
                StringBuilder response = new StringBuilder();

                while ((inputLine = reader.readLine()) != null) {
                    response.append(inputLine);
                }
                reader.close();

                // Process the response data as needed
                System.out.println(response.toString());
            } else {
                System.out.println("HTTP request failed with response code: " + responseCode);
            }

            // Close the connection
            connection.disconnect();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
```

{% endtab %}
{% endtabs %}

### Response

<figure><img src="/files/lNETk4YNAl9QjhtuzLII" alt=""><figcaption></figcaption></figure>

```json
{
  "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": "16193",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=14252090027271643524",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "1632",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=7951096779388712529",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "1578",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=12018554524946333077",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "1121",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=11112848724269661604",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "1075",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=15942606360659954185",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "935",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=10764070690182668063",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "750",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=17374025607959613119",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "691",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=8051706563218438872",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=8051706563218438872&hl=en",
        "citation_id": "8051706563218438872"
      },
      "year": "2015"
    },
    {
      "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": "634",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=14138633253049970899",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=14138633253049970899&hl=en",
        "citation_id": "14138633253049970899"
      },
      "year": "2019"
    },
    {
      "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": "617",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=6034776638941878499",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=6034776638941878499&hl=en",
        "citation_id": "6034776638941878499"
      },
      "year": "2016"
    },
    {
      "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": "557",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=2838072376856188369",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=2838072376856188369&hl=en",
        "citation_id": "2838072376856188369"
      },
      "year": "2010"
    },
    {
      "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": "499",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=4410185230290837678",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=4410185230290837678&hl=en",
        "citation_id": "4410185230290837678"
      },
      "year": "2016"
    },
    {
      "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": "498",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=1358376576284677270",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=1358376576284677270&hl=en",
        "citation_id": "1358376576284677270"
      },
      "year": "2006"
    },
    {
      "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": "481",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=11247023303941198579",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "460",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=6894479640681805797",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "386",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=11159811728131830222",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "310",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=12805243605128962004",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "272",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=10325778143928198840",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "266",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=1695652780519710422",
        "scrapingdog_link": "https://api.scrapingdog.com/google_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": "235",
        "link": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=717611205060357137",
        "scrapingdog_link": "https://api.scrapingdog.com/google_scholar?cites=717611205060357137&hl=en",
        "citation_id": "717611205060357137"
      },
      "year": "2010"
    }
  ],
  "cited_by": {
    "table": [
      {
        "citations": {
          "all": 33941,
          "since_2019": 18110
        }
      },
      {
        "h_index": {
          "all": 52,
          "since_2019": 42
        }
      },
      {
        "i10_index": {
          "all": 76,
          "since_2019": 64
        }
      }
    ],
    "graph": [
      {
        "year": "2006",
        "citations": "150"
      },
      {
        "year": "2007",
        "citations": "320"
      },
      {
        "year": "2008",
        "citations": "490"
      },
      {
        "year": "2009",
        "citations": "612"
      },
      {
        "year": "2010",
        "citations": "813"
      },
      {
        "year": "2011",
        "citations": "1069"
      },
      {
        "year": "2012",
        "citations": "1365"
      },
      {
        "year": "2013",
        "citations": "1449"
      },
      {
        "year": "2014",
        "citations": "1602"
      },
      {
        "year": "2015",
        "citations": "1529"
      },
      {
        "year": "2016",
        "citations": "1817"
      },
      {
        "year": "2017",
        "citations": "2008"
      },
      {
        "year": "2018",
        "citations": "2171"
      },
      {
        "year": "2019",
        "citations": "2610"
      },
      {
        "year": "2020",
        "citations": "2749"
      },
      {
        "year": "2021",
        "citations": "3364"
      },
      {
        "year": "2022",
        "citations": "3414"
      },
      {
        "year": "2023",
        "citations": "3272"
      },
      {
        "year": "2024",
        "citations": "2700"
      }
    ]
  },
  "public_access": {
    "link": "https://scholar.google.com/citations?view_op=list_mandates&hl=en&user=LSsXyncAAAAJ",
    "available": "66",
    "not_available": "1"
  },
  "co_authors": [
    {
      "name": "Xiaole Shirley Liu",
      "link": "https://scholar.google.com/citations?user=8XNfVucAAAAJ&hl=en",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=8XNfVucAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=wwxk-JMAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=rGF5Q9sAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=04GHe_kAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=7IUCbE4AAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "author_id": "7IUCbE4AAAAJ",
      "affiliations": "Grace B. Bell Endowed Chair and Professor of Bioinformatics, University of California Irvine",
      "emails": "Verified email at uci.edu"
    },
    {
      "name": "Jason Carroll",
      "link": "https://scholar.google.com/citations?user=yR98Q94AAAAJ&hl=en",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=yR98Q94AAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=GV7vSDMAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=tepqzFEAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=0v2kH8QAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=XQI8DIEAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=338T-eEAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=X-8ViBEAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=tsky7fYAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=wuR7oA4AAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=3gEM7N8AAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=MntNsM8AAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=hQ8LN_oAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=DdEVWRcAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=-bHzVq8AAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "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",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=uNSng0gAAAAJ&hl=en&api_key=64ba3a568de9be3484544209",
      "author_id": "uNSng0gAAAAJ",
      "affiliations": "HudsonAlpha Institute for Biotechnology",
      "emails": "Verified email at hudsonalpha.com"
    }
  ],
  "pagination": {
    "next": "https://api.scrapingdog.com/google_scholar/author?author_id=LSsXyncAAAAJ&hl=en&page=NaN&api_key=64ba3a568de9be3484544209"
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.scrapingdog.com/google-scholar-api-documentation/google-scholar-author-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
