ArXiv AI Research Scraper – ML Preprints & Direct PDF API avatar

ArXiv AI Research Scraper – ML Preprints & Direct PDF API

Pricing

from $5.00 / 1,000 results

Go to Apify Store
ArXiv AI Research Scraper – ML Preprints & Direct PDF API

ArXiv AI Research Scraper – ML Preprints & Direct PDF API

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.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

Robin world

Robin world

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

🔬 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 Data Source Pricing 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 / MetricCommercial Research Feed (Dimensions / Clarivate)Manual arXiv CrawlingArXiv AI Breakout Tracker
Monthly Cost$500 – $2,000 / month$0 but complex XML pagination & throttlingPay-Per-Event ($0.0030 / paper) (Zero recurring fee)
Data Freshness24–48h delayReal-timeInstant real-time sync with latest preprint submissions
AI Domain FiltersGeneric academic taxonomiesManual searchSpecialized in AI/ML (cs.AI, cs.LG, cs.CL, cs.CV, stat.ML)
Direct PDF LinkingOften behind login portalsManual linkingAutomated direct PDF download links & structured metadata
Free TrialEnterprise sales demo requiredNone$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

ParameterTypeDefaultDescription
categorySelect"cs.AI"Primary category: cs.AI, cs.LG, cs.CL (NLP/LLM), cs.CV (Vision), stat.ML.
queryString""Optional keyword query across paper titles and abstracts (e.g., "reasoning", "transformer").
maxItemsInteger50Maximum number of paper preprints to retrieve (1 to 300).

📤 Output Data Format (JSON Sample)

[
{
"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

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).