# arXiv Paper Scraper - Abstracts, Authors & Categories (`loopchips/arxiv-papers`) Actor

Track research as it is published. Search arXiv by category, author, title or full text and get structured rows with abstract, authors, categories, DOI and PDF link. Reads the official arXiv API.

- **URL**: https://apify.com/loopchips/arxiv-papers.md
- **Developed by:** [Loopchips](https://apify.com/loopchips) (community)
- **Categories:** AI, Developer tools, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$2.00 / 1,000 papers

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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 Scraper

Track research as it is published.

Search arXiv by category, author, title or full text and get structured rows:
title, full abstract, every author, categories, DOI, journal reference and a
direct PDF link. Run it on a schedule and you have a monitor for any field.

### What you get

| Field | Description |
|---|---|
| `title` / `abstract` | Full text of both, cleaned of XML escaping |
| `authors` / `firstAuthor` / `authorCount` | Credits, split for filtering |
| `primaryCategory` / `categories` | arXiv subject classes |
| `publishedAt` / `updatedAt` | Submission and last revision |
| `isRevision` | Whether this version is a revision, not a first posting |
| `doi` / `journalRef` | Present once a paper reaches a journal |
| `absUrl` / `pdfUrl` | Abstract page and direct PDF |
| `arxivId` / `version` | Stable identifier and version number |

### Query syntax

| Example | Finds |
|---|---|
| `cat:cs.AI` | Everything in the AI category |
| `cat:cs.CL AND all:agent` | NLP papers mentioning agents |
| `au:Hinton` | Papers by an author |
| `ti:diffusion` | Title contains a word |
| `all:"retrieval augmented"` | Exact phrase anywhere |

### Example input

```json
{
  "searchQueries": ["cat:cs.AI", "cat:cs.LG AND all:evaluation"],
  "maxResultsPerQuery": 200,
  "sortBy": "submittedDate",
  "sortOrder": "descending"
}
```

### What people use it for

- **Research monitoring** - a daily feed of new work in your field
- **Competitive and talent tracking** - who is publishing what, and where
- **Dataset building** - abstracts and metadata for search or embeddings
- **Literature reviews** - a whole category pulled down in one run

### Pricing

Pay per result. You are charged only for papers actually returned.

### Notes

- `doi` and `journalRef` are empty for papers not yet published in a journal,
  which is normal for recent submissions. Measured on older papers, roughly
  three in four carry both.
- arXiv asks callers to wait about three seconds between requests, which this
  Actor does by default. Lowering the delay risks being throttled.
- Thank you to arXiv for use of its open access interoperability.

# Actor input Schema

## `searchQueries` (type: `array`):

arXiv query syntax. "cat:cs.AI" for a category, "au:Hinton" for an author, "ti:diffusion" for a title word, "all:robotics" for anything. Combine with AND and OR.

## `maxResultsPerQuery` (type: `integer`):

How many papers to collect for each query.

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

Which order to walk the results in.

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

Descending gives you the newest first.

## `requestDelayMs` (type: `integer`):

arXiv asks callers to wait about three seconds between requests. Lowering this risks being throttled.

## Actor input object example

```json
{
  "searchQueries": [
    "cat:cs.AI",
    "cat:cs.CL AND all:agent"
  ],
  "maxResultsPerQuery": 100,
  "sortBy": "submittedDate",
  "sortOrder": "descending",
  "requestDelayMs": 3000
}
```

# Actor output Schema

## `papers` (type: `string`):

Every matching paper with abstract, authors, categories and links.

# 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 = {
    "searchQueries": [
        "cat:cs.AI",
        "cat:cs.CL AND all:agent"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("loopchips/arxiv-papers").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 = { "searchQueries": [
        "cat:cs.AI",
        "cat:cs.CL AND all:agent",
    ] }

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

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

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

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "cat:cs.AI",
    "cat:cs.CL AND all:agent"
  ]
}' |
apify call loopchips/arxiv-papers --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,loopchips/arxiv-papers"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/7LzbvUQM3EdF5aJYc/builds/LVFjhc0ZpI8yEA5T0/openapi.json
