# 批量导出谷歌学术检索结果(CSV)

**Use case:** 

按关键词批量检索谷歌学术论文: 标题、作者、年份、被引次数与 PDF 链接, 导出 CSV/JSON。文献综述与科研数据集的高效起点。

## Input

```json
{
  "searchTerms": [
    "深度学习 医学影像"
  ],
  "maxResultsPerSearch": 10,
  "language": "en"
}
```

## Output

```json
{
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "citedBy": {
    "label": "Cited By",
    "format": "integer"
  },
  "publicationInfo": {
    "label": "Publication Info",
    "format": "string"
  },
  "link": {
    "label": "Link",
    "format": "string"
  },
  "pdfUrl": {
    "label": "PDF URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Scholar Lite - Cheap Bulk Academic Papers API](https://apify.com/johnvc/google-scholar-lite-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-scholar-lite-api) to learn more, explore other use cases, and run it yourself.