Scrapingdog

Google Scholar Profiles API

The Google Scholar Profiles API enables searching for academic researcher profiles on Google Scholar by author name, returning affiliation, citation counts, and research interests.

Endpoint: https://api.scrapingdog.com/google_scholar/profiles

API Parameters

🔑

Authentication

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
🔗

Request Parameters

  • mauthors Required
    The 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 Optional
    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 Optional
    The parameter specifies the token used to retrieve the results from the previous page.

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_scholar/profiles?api_key=APIKEY&mauthors=Mike"
API Response
{
  "profiles": [
    {
      "title": "Mike Robb",
      "author_id": "kq0NYnMAAAAJ",
      "affiliations": "Chemistry Department Imperial College",
      "cited_by": 227886,
      "interests": [
        {"title": "Computational chemistry"},
        {"title": "Theoretical Chemistry"}
      ]
    },
    {
      "title": "Mike A. Nalls",
      "author_id": "ZjfgPLMAAAAJ",
      "affiliations": "Founder/consultant with Data Tecnica International",
      "cited_by": 169495,
      "interests": [
        {"title": "statistical genetics"},
        {"title": "neurodegeneration"}
      ]
    }
  ]
}