# arXiv Paper & Author Scraper (`automly/arxiv-paper-scraper`) Actor

Extract academic papers, abstracts, and author details from arXiv using the official API. Ideal for research monitoring, literature reviews, and building academic datasets.

- **URL**: https://apify.com/automly/arxiv-paper-scraper.md
- **Developed by:** [Automly](https://apify.com/automly) (community)
- **Categories:** AI, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## arXiv Paper & Author Scraper

Extract academic papers, abstracts, and author details from arXiv using the official API. This actor is perfect for research monitoring, systematic literature reviews, building academic datasets, and feeding RAG pipelines with the latest scientific publications.

### Why use this actor?

- **Official API reliability** — Uses the arXiv export API for stable, structured data without scraping complexity.
- **Research monitoring** — Track new papers in specific fields or by keyword.
- **Literature reviews** — Collect abstracts, authors, and categories for systematic analysis.
- **Academic lead generation** — Build lists of researchers and their affiliations by topic.
- **RAG & AI pipelines** — Feed paper abstracts and metadata into vector databases for semantic search.

### Features

- Search papers by free-text query or arXiv category codes
- Filter by date range (last week, last month, last year, or custom range)
- Sort by relevance, submission date, or last updated date
- Extract full abstracts and author lists with affiliations
- Output authors as separate records for easy analysis
- Respects arXiv polite usage policy with built-in rate limiting

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| searchQuery | string | — | arXiv search query, e.g. `machine learning` or `cat:cs.AI` |
| categories | array | — | List of arXiv category codes, e.g. `["cs.AI", "cs.LG"]` |
| dateRange | string | — | `lastWeek`, `lastMonth`, `lastYear`, or `YYYY-MM-DD TO YYYY-MM-DD` |
| maxResults | integer | 100 | Maximum papers to return (1–500) |
| extractAuthors | boolean | true | Include author records as separate rows |
| extractAbstract | boolean | true | Include paper abstracts |
| sortBy | string | relevance | `relevance`, `lastUpdatedDate`, or `submittedDate` |
| sortOrder | string | descending | `ascending` or `descending` |

#### Example input

```json
{
  "searchQuery": "large language models",
  "categories": ["cs.CL", "cs.AI"],
  "dateRange": "lastMonth",
  "maxResults": 50,
  "extractAuthors": true,
  "sortBy": "submittedDate",
  "sortOrder": "descending"
}
````

### Output

Each record includes a `type` field to distinguish entities.

#### Paper

| Field | Type | Description |
|-------|------|-------------|
| type | string | `paper` |
| arxivId | string | arXiv identifier |
| url | string | arXiv abstract page URL |
| pdfUrl | string | Direct PDF URL |
| title | string | Paper title |
| abstract | string | Paper abstract |
| publishedAt | string | ISO 8601 submission date |
| updatedAt | string | ISO 8601 last update date |
| authors | array | List of `{name, affiliation}` objects |
| categories | array | arXiv category codes |
| primaryCategory | string | Primary arXiv category |

#### Author

| Field | Type | Description |
|-------|------|-------------|
| type | string | `author` |
| arxivId | string | Associated paper identifier |
| paperTitle | string | Associated paper title |
| name | string | Author name |
| affiliation | string | Author affiliation |

### Limits and caveats

- arXiv API returns up to **100 results per request**; the actor paginates automatically.
- A **3-second delay** is enforced between requests to respect arXiv's polite usage policy.
- Only publicly available papers are returned.
- Author affiliations are only available when provided by the submitter.

### Pricing

This actor uses **Pay Per Event** pricing. You are charged only for successfully extracted data.

| Event | Price | Description |
|-------|-------|-------------|
| **Paper scraped** | $0.003 | Each paper successfully extracted |
| **Author scraped** | $0.001 | Each author record successfully extracted |

Tiered discounts apply based on your Apify subscription level. A small actor-start fee may also apply.

### FAQ

**Do I need an arXiv account?**
No. The arXiv API is completely open and requires no authentication.

**Can I download the full PDF?**
The actor returns direct PDF URLs in the `pdfUrl` field. You can download them separately.

**What categories are available?**
arXiv uses codes like `cs.AI` (Artificial Intelligence), `cs.LG` (Machine Learning), `cs.CL` (Computation and Language), `physics.gen-ph`, `math.ST`, etc. See the full list at arxiv.org.

**How recent is the data?**
Data reflects the current arXiv index at the time of the run. New papers are typically available within minutes of submission.

# Actor input Schema

## `searchQuery` (type: `string`):

arXiv search query (e.g., 'machine learning', 'cat:cs.AI').

## `categories` (type: `array`):

List of arXiv category codes to filter by (e.g., \['cs.AI', 'cs.LG']).

## `dateRange` (type: `string`):

Date range filter. Use 'lastWeek', 'lastMonth', 'lastYear', or 'YYYY-MM-DD TO YYYY-MM-DD'.

## `maxResults` (type: `integer`):

Maximum number of papers to return.

## `extractAuthors` (type: `boolean`):

Whether to include detailed author information as separate records.

## `extractAbstract` (type: `boolean`):

Whether to include paper abstracts.

## `sortBy` (type: `string`):

Sort order: 'relevance', 'lastUpdatedDate', or 'submittedDate'.

## `sortOrder` (type: `string`):

Sort direction: 'ascending' or 'descending'.

## Actor input object example

```json
{
  "maxResults": 100,
  "extractAuthors": true,
  "extractAbstract": true,
  "sortBy": "relevance",
  "sortOrder": "descending"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("automly/arxiv-paper-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("automly/arxiv-paper-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call automly/arxiv-paper-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=automly/arxiv-paper-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "arXiv Paper & Author Scraper",
        "description": "Extract academic papers, abstracts, and author details from arXiv using the official API. Ideal for research monitoring, literature reviews, and building academic datasets.",
        "version": "1.0",
        "x-build-id": "QxAsr0h2bc5LYPkB7"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automly~arxiv-paper-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automly-arxiv-paper-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/automly~arxiv-paper-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automly-arxiv-paper-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/automly~arxiv-paper-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automly-arxiv-paper-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchQuery": {
                        "title": "Search Query",
                        "type": "string",
                        "description": "arXiv search query (e.g., 'machine learning', 'cat:cs.AI')."
                    },
                    "categories": {
                        "title": "Categories",
                        "type": "array",
                        "description": "List of arXiv category codes to filter by (e.g., ['cs.AI', 'cs.LG']).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "dateRange": {
                        "title": "Date Range",
                        "type": "string",
                        "description": "Date range filter. Use 'lastWeek', 'lastMonth', 'lastYear', or 'YYYY-MM-DD TO YYYY-MM-DD'."
                    },
                    "maxResults": {
                        "title": "Maximum Results",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of papers to return.",
                        "default": 100
                    },
                    "extractAuthors": {
                        "title": "Extract Authors",
                        "type": "boolean",
                        "description": "Whether to include detailed author information as separate records.",
                        "default": true
                    },
                    "extractAbstract": {
                        "title": "Extract Abstract",
                        "type": "boolean",
                        "description": "Whether to include paper abstracts.",
                        "default": true
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "relevance",
                            "lastUpdatedDate",
                            "submittedDate"
                        ],
                        "type": "string",
                        "description": "Sort order: 'relevance', 'lastUpdatedDate', or 'submittedDate'.",
                        "default": "relevance"
                    },
                    "sortOrder": {
                        "title": "Sort Order",
                        "enum": [
                            "ascending",
                            "descending"
                        ],
                        "type": "string",
                        "description": "Sort direction: 'ascending' or 'descending'.",
                        "default": "descending"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
