Scrapingdog
HomePricingSupportLogin
  • Documentation
  • Web Scraping API
    • Request Customization
      • Javascript Rendering
        • Wait when rendering Javascript
      • Custom Headers
      • Premium Residential Proxies
      • Geotargeting
      • Sessions
  • POST Request
  • Google Search Scraper API
    • Google Country Parameter: Supported Google Countries
    • Supported Google Countries via cr parameter
    • Google Domains Page
    • Google Language Page
    • Google LR Language Page
  • Google AI Overview API
  • Google Maps API
    • Google Maps Posts API
    • Google Maps Photos API
    • Google Maps Reviews API
    • Google Maps Places API
  • Google Trends API
    • Google Trends Autocomplete API
    • Google Trends Trending Now API
  • Google Images API
  • Google News API
    • Google News API 2.0
  • Google Shopping API
  • Google Product API
  • Google Videos API
  • Google Shorts API
  • Google Autocomplete API
  • Google Scholar API
    • Google Scholar Profiles API
    • Google Scholar Author API
      • Google Scholar Author Citation API
    • Google Scholar Cite API
  • Google Finance API
  • Google Lens API
  • Google Jobs API
  • Google Local API
  • Google Patents API
    • Google Patent Details API
  • Bing Search Scraper API
  • Amazon Scraper API
    • Amazon Product Scraper
    • Amazon Search Scraper
    • Amazon Reviews API
    • Amazon Autocomplete Scraper
  • Instagram Scraper API
  • Linkedin Scraper API
    • Person Profile Scraper
    • Company Profile Scraper
  • Linkedin Jobs Scraper
    • Scrape Linkedin Jobs
    • Scrape LinkedIn Job Overview
  • Yelp Scraper API
  • Twitter Scraping API
    • X Scraping API 2.0
  • Indeed Scraper API
  • Zillow Scraper API
  • Youtube Scraper API
    • Youtube Search API
    • YouTube Transcripts API
    • YouTube Channel API
  • Walmart Scraper API
    • Walmart Product Scraper
    • Walmart Search Scraper
    • Walmart Reviews Scraper
  • Screenshot API
  • Webhook Integration
  • Datacenter Proxies
  • Account API
Powered by GitBook
On this page
  • API Example
  • Response
  1. Google Scholar API

Google Scholar Profiles API

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

PreviousGoogle Scholar APINextGoogle Scholar Author API

Last updated 8 months ago

Parameters

Paramter
Description

api_key

required

Your personal API key. Available on your dashboard Type: String

mauthors

required

ParThe author parameter specifies the author you wish to search for. Additionally, you can include query helpers like label: in your search. Type: String

after_author

The parameter specifies the token used to fetch the next set of results. It takes precedence over the before_author parameter. Type: String

before_author

The parameter specifies the token used to retrieve the results from the previous page. Type: String

API Example

cURL "https://api.scrapingdog.com/google_scholar/profiles?api_key=APIKEY&mauthors=Mike"
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}")
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);
  });
<?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);
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
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();
        }
    }
}

Response

{
  "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
  }
}