# OpenAlex Citation Literature Review

**Use case:** 

Build a literature-review dataset from OpenAlex by collecting highly cited papers with authors, citations, DOIs, abstracts, and access links.

## Input

```json
{
  "searchQueries": [
    "large language models",
    "retrieval augmented generation",
    "AI agents"
  ],
  "publicationYear": "2022-2026",
  "minCitations": 25,
  "openAccessOnly": true,
  "sortBy": "cited_by_count",
  "maxResults": 100
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "text"
  },
  "publicationYear": {
    "label": "Year",
    "format": "number"
  },
  "journalName": {
    "label": "Journal",
    "format": "text"
  },
  "citedByCount": {
    "label": "Citations",
    "format": "number"
  },
  "isOpenAccess": {
    "label": "Open Access",
    "format": "boolean"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "topics": {
    "label": "Topics",
    "format": "text"
  },
  "doiUrl": {
    "label": "DOI",
    "format": "link"
  }
}
```

## About this Actor

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