# Export Google Scholar Results to CSV

**Use case:** 

Search Google Scholar and download the results as a CSV: paper title, link, and snippet for each result. Exports to Excel and Sheets too.

## Input

```json
{
  "mode": "search",
  "q": "machine learning",
  "hl": "en",
  "scisbd": "0",
  "as_sdt": "0",
  "filter": "1",
  "as_vis": "0",
  "as_rr": "0",
  "max_pages": 1
}
```

## Output

```json
{
  "position": {
    "label": "Position On Page",
    "format": "integer"
  },
  "paper_title": {
    "label": "Paper Title",
    "format": "string"
  },
  "link": {
    "label": "Paper URL",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "_query_index": {
    "label": "Page Number or Call Index",
    "format": "integer"
  },
  "result_id": {
    "label": "Paper Result ID",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Scholar | Research Papers, Citations & Author Profiles](https://apify.com/johnvc/google-scholar-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-scholar-api) to learn more, explore other use cases, and run it yourself.