# ArXiv AI Research Scraper – ML Preprints & Direct PDF API (`robinworld/arxiv-ai-research-breakout-tracker`) Actor

Scrapes real-time computer science and machine learning research papers (cs.AI, cs.LG, cs.CL) from Cornell arXiv with abstracts and direct PDF links.

- **URL**: https://apify.com/robinworld/arxiv-ai-research-breakout-tracker.md
- **Developed by:** [Robin world](https://apify.com/robinworld) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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/actors/running/actors-in-store.md#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 AI & Frontier Machine Learning Research Breakout Tracker

> Real-time intelligence on groundbreaking AI, LLM, Computer Vision, and Machine Learning research preprints directly from Cornell University's arXiv. Built for AI researchers, hedge fund quants, VC technical diligence teams, and enterprise R\&D departments.

[![Apify Actor](https://img.shields.io/badge/Apify-Actor%20Ready-brightgreen.svg)](https://apify.com)
[![Data Source](https://img.shields.io/badge/Data%20Source-Cornell%20arXiv%20Official-blue.svg)](https://arxiv.org)
[![Pricing](https://img.shields.io/badge/Pricing-Pay--Per--Event%20\($0.0030/record\)-orange.svg)](#pricing)
[![Free Trial](https://img.shields.io/badge/Free%20Trial-$5.00%20Credit%20Included-success.svg)](#free-trial)

***

### 💡 Why Choose This Actor?

Frontier AI models and breakthrough reasoning paradigms are published first on arXiv weeks or months before commercial announcements. Commercial scientific aggregators charge thousands of dollars for research feeds:

| Feature / Metric | Commercial Research Feed (Dimensions / Clarivate) | Manual arXiv Crawling | **ArXiv AI Breakout Tracker** |
| :--- | :--- | :--- | :--- |
| **Monthly Cost** | **$500 – $2,000 / month** | $0 but complex XML pagination & throttling | **Pay-Per-Event ($0.0030 / paper)** (Zero recurring fee) |
| **Data Freshness** | 24–48h delay | Real-time | **Instant real-time sync with latest preprint submissions** |
| **AI Domain Filters** | Generic academic taxonomies | Manual search | **Specialized in AI/ML (cs.AI, cs.LG, cs.CL, cs.CV, stat.ML)** |
| **Direct PDF Linking** | Often behind login portals | Manual linking | **Automated direct PDF download links & structured metadata** |
| **Free Trial** | Enterprise sales demo required | None | **$5.00 Free Trial Credit** (Up to 1,600 papers free) |

***

### 🎯 Target Audiences & Use Cases

1. **AI R\&D Engineers & Tech Leads**:
   - Track daily breakthroughs in LLM reasoning, post-training optimization, and multi-modal architectures.
2. **Quantitative Hedge Funds & Trading Desks**:
   - Extract algorithmic innovations and early sentiment trends before they reach financial media.
3. **Venture Capital Technical Diligence**:
   - Verify founder claims, examine author track records, and spot novel foundational architectures.
4. **Academic Scholars & PhD Candidates**:
   - Automated literature review and automated alerting for niche subfields.

***

### 📥 Input Parameters

| Parameter | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `category` | Select | `"cs.AI"` | Primary category: `cs.AI`, `cs.LG`, `cs.CL` (NLP/LLM), `cs.CV` (Vision), `stat.ML`. |
| `query` | String | `""` | Optional keyword query across paper titles and abstracts (e.g., `"reasoning"`, `"transformer"`). |
| `maxItems` | Integer | `50` | Maximum number of paper preprints to retrieve (1 to 300). |

***

### 📤 Output Data Format (JSON Sample)

```json
[
  {
    "arxiv_id": "2609.04912v1",
    "title": "Latent Flow Distillation: High-Speed Test-Time Compute for Complex Reasoning",
    "primary_category": "cs.AI",
    "all_categories": ["cs.AI", "cs.LG", "cs.CL"],
    "authors": ["Sophia Chen", "Marcus Vance", "Liam Zhang"],
    "published_date": "2026-09-08T03:15:22Z",
    "updated_date": null,
    "summary": "We present Latent Flow Distillation (LFD), an inference-time optimization technique that reduces reasoning token count by 4.2x while preserving mathematical rigor across benchmark evaluations...",
    "pdf_url": "https://arxiv.org/pdf/2609.04912v1.pdf",
    "arxiv_url": "https://arxiv.org/abs/2609.04912v1",
    "scraped_at": "2026-09-08T06:00:00+00:00"
  }
]
```

***

### 🐍 1-Click Python Integration

```python
from apify_client import ApifyClient

## Initialize client with your Apify API Token
client = ApifyClient("YOUR_APIFY_TOKEN")

## Run ArXiv AI Research Breakout Tracker
run = client.actor("robinworld/arxiv-ai-research-breakout-tracker").call(
    run_input={
        "category": "cs.CL",
        "query": "reasoning",
        "maxItems": 20
    }
)

## Fetch latest papers from dataset
for paper in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(f"📄 [{paper['arxiv_id']}] {paper['title']}")
    print(f"   Authors: {', '.join(paper['authors'][:3])}")
    print(f"   PDF: {paper['pdf_url']}")
```

***

### ❓ Frequently Asked Questions (FAQ)

##### Q: How often is the arXiv paper database updated?

arXiv releases new preprints Sunday through Thursday around 20:00 EST. This Actor accesses the live feed instantly upon publication.

##### Q: Can I download the full-text PDFs?

Yes! Each output record includes the direct, authenticated HTTPS PDF download URL (`pdf_url`).

# Actor input Schema

## `category` (type: `string`):

Select AI/ML research domain.

## `query` (type: `string`):

Optional keyword search in paper title/abstract (e.g. 'reasoning', 'transformer', 'agent', 'diffusion', 'deepseek'). Leave empty for all latest.

## `maxItems` (type: `integer`):

Total limit of research paper records to retrieve.

## Actor input object example

```json
{
  "category": "cs.AI",
  "query": "",
  "maxItems": 50
}
```

# Actor output Schema

## `overview` (type: `string`):

Direct link to dataset containing extracted research papers, abstracts, and PDF 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("robinworld/arxiv-ai-research-breakout-tracker").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("robinworld/arxiv-ai-research-breakout-tracker").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 '{}' |
apify call robinworld/arxiv-ai-research-breakout-tracker --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,robinworld/arxiv-ai-research-breakout-tracker"
        }
    }
}

```

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/WEmYQb8ks9tEWURsH/builds/jDmS4heB5V1jAy8V6/openapi.json
