# Which arXiv Papers Are Safe to Cite?

**Use case:** 

Check arXiv papers for citation safety: published vs preprint, peer-review status, and a low / medium / high citation-risk verdict on each.

## Input

```json
{
  "searchQuery": "all:large language models",
  "sortBy": "relevance",
  "sortOrder": "descending",
  "maxResults": 50,
  "analysisMode": "cite-check",
  "outputProfile": "standard",
  "outputMode": "papers",
  "emitResearchBrief": true,
  "includeCitationFields": true,
  "includeEvidenceLedger": false,
  "onlyPeerReviewed": true,
  "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"
  },
  "peerReviewStatus": {
    "label": "Peer review",
    "format": "string"
  },
  "citationRisk": {
    "label": "Cite risk",
    "format": "string"
  },
  "recommendedAction": {
    "label": "Action",
    "format": "string"
  },
  "venue": {
    "label": "Venue",
    "format": "string"
  },
  "versionCount": {
    "label": "Versions",
    "format": "integer"
  },
  "ragSafe": {
    "label": "RAG-safe",
    "format": "boolean"
  },
  "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.