# Build a Literature Review from arXiv

**Use case:** 

Turn a topic into a ranked reading plan: surveys and foundational papers first, with maturity and citation-risk scored on every arXiv paper.

## Input

```json
{
  "searchQuery": "all:retrieval augmented generation",
  "sortBy": "relevance",
  "sortOrder": "descending",
  "maxResults": 50,
  "analysisMode": "literature-review",
  "outputProfile": "standard",
  "outputMode": "papers",
  "emitResearchBrief": true,
  "includeCitationFields": true,
  "includeEvidenceLedger": false,
  "onlyPeerReviewed": false,
  "excludeWithdrawn": false,
  "requireCode": false,
  "minVersionCount": 1,
  "freshnessFilter": "any",
  "monitorMode": false,
  "watchlistName": "default",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "publicationStatus": {
    "label": "Status",
    "format": "string"
  },
  "maturityTier": {
    "label": "Maturity",
    "format": "string"
  },
  "maturityScore": {
    "label": "Maturity #",
    "format": "integer"
  },
  "citationRisk": {
    "label": "Cite risk",
    "format": "string"
  },
  "recommendedAction": {
    "label": "Action",
    "format": "string"
  },
  "priorityScore": {
    "label": "Priority",
    "format": "integer"
  },
  "hasCode": {
    "label": "Code",
    "format": "boolean"
  },
  "primaryCategory": {
    "label": "Category",
    "format": "string"
  },
  "published": {
    "label": "Published",
    "format": "string"
  },
  "absUrl": {
    "label": "Abstract",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [ArXiv Preprint Paper Search](https://apify.com/ryanclinton/arxiv-paper-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/arxiv-paper-search) to learn more, explore other use cases, and run it yourself.