# Google Scholar Profiles API

#### Parameters <a href="#parameters" id="parameters"></a>

| 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>mauthors<br></p><p><mark style="color:red;">required</mark></p> | <p>ParThe <code>author</code> parameter specifies the author you wish to search for. Additionally, you can include query helpers like <code>label:</code> in your search.<br><br>Type: <em><strong>String</strong></em></p> |
| after\_author                                                      | <p>The parameter specifies the token used to fetch the next set of results. It takes precedence over the <code>before\_author</code> parameter.<br><br>Type: <em><strong>String</strong></em></p>                           |
| before\_author                                                     | <p>The parameter specifies the token used to retrieve the results from the previous page.<br><br>Type: <em><strong>String</strong></em></p>                                                                                 |

### API Example

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

```json
cURL "https://api.scrapingdog.com/google_scholar/profiles?api_key=APIKEY&mauthors=Mike"
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

api_key = "APIKEY"
url = "https://api.scrapingdog.com/google_scholar/profiles"

params = {
    "api_key": api_key,
    "mauthors": "Mike"
}

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 = 'APIKEY';
const url = 'https://api.scrapingdog.com/google_scholar/profiles';

const params = {
  api_key: api_key,
  mauthors: 'Mike'
};

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 = 'APIKEY';
$mauthors = 'Mike';

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

// 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 = 'APIKEY'
mauthors = 'Mike'

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

# 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 = "APIKEY";
            String mauthors = "Mike";

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

            // 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/aX9qAmj00niTtffiDEHj" alt=""><figcaption></figcaption></figure>

```json
{
  "profiles": [
    {
      "title": "Mike Robb",
      "link": "https://scholar.google.com/citations?hl=en&user=kq0NYnMAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=kq0NYnMAAAAJ&hl=en",
      "author_id": "kq0NYnMAAAAJ",
      "affiliations": "Chemistry Department Imperial College",
      "email": "Verified email at imperial.ac.uk",
      "cited_by": 227886,
      "thumbnail": "https://scholar.google.com/citations/images/avatar_scholar_56.png",
      "interests": [
        {
          "title": "Computational chemistry",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:computational_chemistry",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=kq0NYnMAAAAJ&hl=en"
        },
        {
          "title": "Theoretical Chemistry",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:theoretical_chemistry",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=kq0NYnMAAAAJ&hl=en"
        },
        {
          "title": "conical intersections",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:conical_intersections",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=kq0NYnMAAAAJ&hl=en"
        },
        {
          "title": "non adiabatic dynamics",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:non_adiabatic_dynamics",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=kq0NYnMAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike A. Nalls",
      "link": "https://scholar.google.com/citations?hl=en&user=ZjfgPLMAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=ZjfgPLMAAAAJ&hl=en",
      "author_id": "ZjfgPLMAAAAJ",
      "affiliations": "Founder/consultant with Data Tecnica International + Data science lead at NIH's Center for …",
      "email": "Verified email at mail.nih.gov",
      "cited_by": 169495,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=ZjfgPLMAAAAJ&citpid=14",
      "interests": [
        {
          "title": "statistical genetics",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:statistical_genetics",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=ZjfgPLMAAAAJ&hl=en"
        },
        {
          "title": "neurodegeneration",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:neurodegeneration",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=ZjfgPLMAAAAJ&hl=en"
        },
        {
          "title": "data science",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:data_science",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=ZjfgPLMAAAAJ&hl=en"
        },
        {
          "title": "biostatistics",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:biostatistics",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=ZjfgPLMAAAAJ&hl=en"
        },
        {
          "title": "genomics",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:genomics",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=ZjfgPLMAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "mike wright",
      "link": "https://scholar.google.com/citations?hl=en&user=RIg9DVEAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=RIg9DVEAAAAJ&hl=en",
      "author_id": "RIg9DVEAAAAJ",
      "affiliations": "imperial college",
      "email": "Verified email at imperial.ac.uk",
      "cited_by": 126920,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=RIg9DVEAAAAJ&citpid=2",
      "interests": [
        {
          "title": "entrepreneurship",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:entrepreneurship",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=RIg9DVEAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike Lean (MEJ Lean)",
      "link": "https://scholar.google.com/citations?hl=en&user=R8PPdbQAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=R8PPdbQAAAAJ&hl=en",
      "author_id": "R8PPdbQAAAAJ",
      "affiliations": "Professor of Human Nutrition, University of Glasgow",
      "email": "Verified email at glasgow.ac.uk",
      "cited_by": 96371,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=R8PPdbQAAAAJ&citpid=3",
      "interests": [
        {
          "title": "Food",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:food",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=R8PPdbQAAAAJ&hl=en"
        },
        {
          "title": "Nutrition",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:nutrition",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=R8PPdbQAAAAJ&hl=en"
        },
        {
          "title": "Obesity",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:obesity",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=R8PPdbQAAAAJ&hl=en"
        },
        {
          "title": "Diabetes",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:diabetes",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=R8PPdbQAAAAJ&hl=en"
        },
        {
          "title": "CHD",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:chd",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=R8PPdbQAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike Schuster",
      "link": "https://scholar.google.com/citations?hl=en&user=L9lS9_AAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=L9lS9_AAAAAJ&hl=en",
      "author_id": "L9lS9_AAAAAJ",
      "affiliations": "Two Sigma",
      "email": "Verified email at twosigma.com",
      "cited_by": 91709,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=L9lS9_AAAAAJ&citpid=1",
      "interests": [
        {
          "title": "machine learning",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:machine_learning",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=L9lS9_AAAAAJ&hl=en"
        },
        {
          "title": "neural networks",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:neural_networks",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=L9lS9_AAAAAJ&hl=en"
        },
        {
          "title": "deep learning",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:deep_learning",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=L9lS9_AAAAAJ&hl=en"
        },
        {
          "title": "reinforcement learning",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:reinforcement_learning",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=L9lS9_AAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "prof dr ir Mike SM Jetten",
      "link": "https://scholar.google.com/citations?hl=en&user=iXjCKTgAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=iXjCKTgAAAAJ&hl=en",
      "author_id": "iXjCKTgAAAAJ",
      "affiliations": "Radboud University, Microbiology, Nijmegen, Netherlands",
      "email": "Verified email at science.ru.nl",
      "cited_by": 85892,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=iXjCKTgAAAAJ&citpid=3",
      "interests": [
        {
          "title": "anaerobic microbiology",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:anaerobic_microbiology",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=iXjCKTgAAAAJ&hl=en"
        },
        {
          "title": "nitrogen cycle",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:nitrogen_cycle",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=iXjCKTgAAAAJ&hl=en"
        },
        {
          "title": "methane archaea",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:methane_archaea",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=iXjCKTgAAAAJ&hl=en"
        },
        {
          "title": "anammox",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:anammox",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=iXjCKTgAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike Wingfield",
      "link": "https://scholar.google.com/citations?hl=en&user=wT4V7isAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=wT4V7isAAAAJ&hl=en",
      "author_id": "wT4V7isAAAAJ",
      "affiliations": "Professor, Forestry and Agricultural Biotechnology Institute (FABI), University  of Pretoria",
      "email": "Verified email at fabi.up.ac.za",
      "cited_by": 78937,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=wT4V7isAAAAJ&citpid=5",
      "interests": [
        {
          "title": "forest protection",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:forest_protection",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=wT4V7isAAAAJ&hl=en"
        },
        {
          "title": "mycology",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:mycology",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=wT4V7isAAAAJ&hl=en"
        },
        {
          "title": "entomology",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:entomology",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=wT4V7isAAAAJ&hl=en"
        },
        {
          "title": "biotechnology",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:biotechnology",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=wT4V7isAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike W. Peng",
      "link": "https://scholar.google.com/citations?hl=en&user=z1Kz8gQAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=z1Kz8gQAAAAJ&hl=en",
      "author_id": "z1Kz8gQAAAAJ",
      "affiliations": "Jindal Chair of Global Strategy, University of Texas at Dallas",
      "email": "Verified email at utdallas.edu",
      "cited_by": 65810,
      "thumbnail": "https://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=small_photo&user=z1Kz8gQAAAAJ&citpid=2",
      "interests": [
        {
          "title": "International Business",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:international_business",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=z1Kz8gQAAAAJ&hl=en"
        },
        {
          "title": "Global Strategy",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:global_strategy",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=z1Kz8gQAAAAJ&hl=en"
        },
        {
          "title": "Strategic Management",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:strategic_management",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=z1Kz8gQAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike Tyers",
      "link": "https://scholar.google.com/citations?hl=en&user=9zEuqoIAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=9zEuqoIAAAAJ&hl=en",
      "author_id": "9zEuqoIAAAAJ",
      "affiliations": "The Hospital for Sick Children",
      "email": "Verified email at sickkids.ca",
      "cited_by": 60956,
      "thumbnail": "https://scholar.google.com/citations/images/avatar_scholar_56.png",
      "interests": [
        {
          "title": "cell growth and division",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:cell_growth_and_division",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=9zEuqoIAAAAJ&hl=en"
        },
        {
          "title": "systems and synthetic biology",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:systems_and_synthetic_biology",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=9zEuqoIAAAAJ&hl=en"
        },
        {
          "title": "chemical biology",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:chemical_biology",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=9zEuqoIAAAAJ&hl=en"
        },
        {
          "title": "ubiquitin-proteasome system",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:ubiquitin_proteasome_system",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=9zEuqoIAAAAJ&hl=en"
        },
        {
          "title": "infectious disease",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:infectious_disease",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=9zEuqoIAAAAJ&hl=en"
        }
      ]
    },
    {
      "title": "Mike Lewis",
      "link": "https://scholar.google.com/citations?hl=en&user=SnQnQicAAAAJ",
      "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/author?author_id=SnQnQicAAAAJ&hl=en",
      "author_id": "SnQnQicAAAAJ",
      "affiliations": "Facebook AI Research",
      "email": "Verified email at fb.com",
      "cited_by": 60167,
      "thumbnail": "https://scholar.google.com/citations/images/avatar_scholar_56.png",
      "interests": [
        {
          "title": "Natural language processing",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:natural_language_processing",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=SnQnQicAAAAJ&hl=en"
        },
        {
          "title": "machine learning",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:machine_learning",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=SnQnQicAAAAJ&hl=en"
        },
        {
          "title": "linguistics",
          "link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:linguistics",
          "scrapingdog_link": "https://api.scrapingdog.com/google_scholar/profiles?author_id=SnQnQicAAAAJ&hl=en"
        }
      ]
    }
  ],
  "pagination": {
    "next": "https://api.scrapingdog.com/google_scholar/profiles?mauthors=Mike&hl=en&after_author=8cYcAPYU__8J",
    "next_page_token": "8cYcAPYU__8J",
    "previous": "https://api.scrapingdog.com/google_scholar/profiles?mauthors=Mike&hl=en&before_author=null&after_author=",
    "previous_page_token": null
  }
}
```


---

# 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-profiles-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.
