Zenolve Feeds
AI research data

arXiv Machine Learning Papers API

The latest arXiv cs.LG (machine learning) preprints as structured JSON - title, authors, and subject.

Source: arXiv (Cornell University)$0.004 / recordJSON · CSV · ExcelMCP tool for AI agents

What this feed does

cs.LG is arXiv's machine-learning firehose - the category where new ML methods land first. This feed scrapes the recent-listings page on demand and returns each preprint as structured JSON.

Structured, not scraped-by-you

Clean JSON with stable field names - no HTML parsing, no selectors to maintain when the site changes.

Pay only for what you pull

No subscription. $0.004 per record via Apify's metered billing; a typical pull is cents.

Human + agent ready

Call it from cURL, Python, or JS - or hand it to an AI agent as an MCP tool.

Always the latest

Scraped from the official source on every run, so you never ship stale data.

What each record contains

Every result is a JSON object with these fields.

FieldTypeDescription
titlestringPreprint title.
authorsstringFirst listed author.
subjectstringPrimary arXiv subject classification.

Live sample

The most recent records, straight from the feed. Live sample - fetched at build time

titleauthorssubject
The Seriality Gap in Video Diffusion ModelsJorge Diaz ChaoMachine Learning (cs.LG)
TerraZero: Procedural Driving Simulation for Zero-Demonstration Self-Play at ScaleZhouchonghao WuMachine Learning (cs.LG)
The Spectrum Is Not Enough: When Context Helps Time-Series ForecastingMert Onur CakirogluMachine Learning (cs.LG)
Efficient Sequential Calibration with $O(T^{2/3-ε})$ Error BoundZihan ZhangMachine Learning (cs.LG)
Contrastive-Collapsed Loss for Flexible and Geometrically Optimal Embeddings and Faster ConvergenceBlanca Cano-CamareroMachine Learning (cs.LG)
Energy-Based Physics-Informed Form Finding for Clustered Tensegrity StructuresJing QinMachine Learning (cs.LG)
Verifier-Based Reinforcement Fine-Tuning of Reasoning Models for Thermal Energy Storage ControlTakumi ShiodaMachine Learning (cs.LG)
Accelerating Masked Diffusion Large Language Models: A Survey of Efficient Inference TechniquesDaehoon GwakMachine Learning (cs.LG)

Call it in one line

Runs the actor and returns the dataset. Swap in your Apify token.

cURL - one call, JSON back
curl "https://api.apify.com/v2/acts/zenolvepro~arxiv-cs-lg/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"
Python
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("zenolvepro/arxiv-cs-lg").call()
for row in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(row)
JavaScript / Node
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('zenolvepro/arxiv-cs-lg').call();
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
AI agents - Model Context Protocol (MCP)
https://mcp.apify.com?tools=zenolvepro/arxiv-cs-lg

Point any MCP-capable agent at this endpoint and the feed becomes a callable tool.

Who uses it

AI labs, research-monitoring tools, and investors tracking the field use it for monitoring, benchmarking, alerting, and enrichment.

Pricing

$0.004per record returned · pay-per-result, no subscription

Billed through Apify. A tiny per-run start fee ($0.00005) applies. Only pay for records you actually pull.

FAQ

Doesn't arXiv have a free API?
Yes - but it is rate-limited, XML-based, and query-oriented. This feed gives you the human-curated recent listing as clean JSON at $0.004 per record, no XML parsing.
How current is it?
Live - each call scrapes the cs.LG recent page, which arXiv updates every announcement cycle (weekdays).
Can I use other categories?
Yes - pass any arXiv listing URL as input, or use the sibling cs.CV and cs.CL feeds.
What does each record include?
title, first author, and the primary subject tag.
Can an AI agent call this directly?
Yes - exposed as an MCP tool for native agent calls.