# arXiv Research Paper Search — Free Academic Metadata Scraper

**Use case:** 

Search 2.5M+ arXiv research papers by keyword, category, author, or paper ID. Returns clean typed JSON with title, authors, abstract, categories, and PDF links.

## Input

```json
{
  "query": "transformer",
  "searchMode": "all",
  "sortBy": "relevance",
  "sortOrder": "descending",
  "maxResults": 10,
  "start": 0
}
```

## Output

```json
{
  "arxivId": {
    "label": "arXiv ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "primaryCategory": {
    "label": "Primary",
    "format": "string"
  },
  "published": {
    "label": "Published",
    "format": "string"
  },
  "updated": {
    "label": "Updated",
    "format": "string"
  },
  "pdfUrl": {
    "label": "PDF",
    "format": "string"
  },
  "abstract": {
    "label": "Abstract",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [arXiv Research Papers Scraper](https://apify.com/leorochasantos/arxiv-papers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/leorochasantos/arxiv-papers-scraper) to learn more, explore other use cases, and run it yourself.