# arXiv Metadata Export Task

**Use case:** 

Export arXiv paper metadata including IDs, titles, authors, categories, dates, DOI values when available, abstract pages, and PDF URLs.

## Input

```json
{
  "searchQuery": "machine learning",
  "sortBy": "relevance",
  "includeAbstract": true,
  "onlyNewPapers": false,
  "maxResults": 10
}
```

## Output

```json
{
  "arxivId": {
    "label": "arXiv ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "authorCount": {
    "label": "Author count",
    "format": "integer"
  },
  "primaryCategory": {
    "label": "Primary category",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "isCrossListed": {
    "label": "Cross-listed",
    "format": "boolean"
  },
  "submittedDate": {
    "label": "Submitted date",
    "format": "string"
  },
  "updatedDate": {
    "label": "Updated date",
    "format": "string"
  },
  "abstractUrl": {
    "label": "Abstract page URL",
    "format": "string"
  },
  "pdfUrl": {
    "label": "PDF URL",
    "format": "string"
  },
  "doi": {
    "label": "DOI",
    "format": "string"
  },
  "comment": {
    "label": "Author comment",
    "format": "string"
  },
  "journalRef": {
    "label": "Journal reference",
    "format": "string"
  },
  "abstractReadMinutes": {
    "label": "Abstract read minutes",
    "format": "number"
  },
  "metadataCompleteness": {
    "label": "Metadata completeness",
    "format": "number"
  },
  "extractionTimestamp": {
    "label": "Extraction timestamp",
    "format": "string"
  }
}
```

## About this Actor

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