# Google Scholar author search scraper

**Use case:** 

Export Google Scholar results for author queries with citation counts, publication sources, PDF links, and related article URLs.

## Input

```json
{
  "queries": [
    "author:\"Yann LeCun\" deep learning",
    "author:\"Fei-Fei Li\" computer vision"
  ],
  "sortBy": "date",
  "includePatents": false,
  "includeCitations": true,
  "maxResults": 30,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "authors": {
    "label": "Authors",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "citationCount": {
    "label": "Citations",
    "format": "integer"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "pdfUrl": {
    "label": "PDF",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "versionCount": {
    "label": "Versions",
    "format": "integer"
  },
  "query": {
    "label": "Query",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Scholar Scraper](https://apify.com/automation-lab/google-scholar-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-scholar-scraper) to learn more, explore other use cases, and run it yourself.