ArXiv AI Research Scraper – ML Preprints & Direct PDF API
Pricing
from $5.00 / 1,000 results
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
Maintained by CommunityActor 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.
💡 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
- AI R&D Engineers & Tech Leads:
- Track daily breakthroughs in LLM reasoning, post-training optimization, and multi-modal architectures.
- Quantitative Hedge Funds & Trading Desks:
- Extract algorithmic innovations and early sentiment trends before they reach financial media.
- Venture Capital Technical Diligence:
- Verify founder claims, examine author track records, and spot novel foundational architectures.
- 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)
[{"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 Tokenclient = ApifyClient("YOUR_APIFY_TOKEN")# Run ArXiv AI Research Breakout Trackerrun = client.actor("robinworld/arxiv-ai-research-breakout-tracker").call(run_input={"category": "cs.CL","query": "reasoning","maxItems": 20})# Fetch latest papers from datasetfor 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).