# Scrape Google Scholar for a PRISMA systematic review

**Use case:** 

Collect Google Scholar results for systematic review screening. Batch search terms and year ranges, then export rows for PRISMA workflows.

## Input

```json
{
  "searchTerms": [
    "mindfulness based stress reduction randomized controlled trial"
  ],
  "yearFrom": 2015,
  "maxResultsPerSearch": 20,
  "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.