# arXiv Quantum Computing Scraper

**Use case:** 

Scrape arXiv quantum computing research papers with title, abstract, authors, primary category, journal reference, and PDF links. Export to JSON or CSV.

## Input

```json
{
  "searchQuery": "quantum computing",
  "sortBy": "relevance",
  "sortOrder": "descending",
  "maxItems": 25
}
```

## Output

```json
{
  "title": {
    "label": "📄 Title",
    "format": "text"
  },
  "authors": {
    "label": "👤 Authors",
    "format": "array"
  },
  "arxivId": {
    "label": "🆔 arXiv ID",
    "format": "text"
  },
  "primaryCategory": {
    "label": "🏷️ Primary Category",
    "format": "text"
  },
  "categories": {
    "label": "🗂️ Categories",
    "format": "array"
  },
  "published": {
    "label": "📅 Published",
    "format": "text"
  },
  "updated": {
    "label": "🕒 Updated",
    "format": "text"
  },
  "summary": {
    "label": "📝 Abstract",
    "format": "text"
  },
  "doi": {
    "label": "🔗 DOI",
    "format": "text"
  },
  "journalRef": {
    "label": "📚 Journal Ref",
    "format": "text"
  },
  "absUrl": {
    "label": "🌐 Abstract Page",
    "format": "link"
  },
  "pdfUrl": {
    "label": "📥 PDF",
    "format": "link"
  },
  "scrapedAt": {
    "label": "⏱️ Scraped At",
    "format": "text"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

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