arXiv NLP Papers API (cs.CL)
The latest arXiv cs.CL (NLP / computation & language) preprints as structured JSON.
What this feed does
cs.CL is arXiv's NLP and language-modeling category - where new LLM research appears first. This feed scrapes the recent listings 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.
| Field | Type | Description |
|---|---|---|
title | string | Preprint title. |
authors | string | First listed author. |
subject | string | Primary arXiv subject classification. |
Live sample
The most recent records, straight from the feed. Live sample - fetched at build time
| title | authors | subject |
|---|---|---|
| PalmClaw: A Native On-Device Agent Framework for Mobile Phones | Hongru Cai | Computation and Language (cs.CL) |
| The Illusion of Robustness: Aggregate Accuracy Hides Prediction Flips under Task-Irrelevant Context | Yanzhe Zhang | Computation and Language (cs.CL) |
| LLM Judges Can Be Too Generous When There Is No Reference Answer | Chalamalasetti Kranti | Computation and Language (cs.CL) |
| Evaluating Large Language Models on Misconceptions in Multi-Turn Medical Conversations | Monica Munnangi | Computation and Language (cs.CL) |
| Can LLMs Write Reliable Rubrics? A Meta-Evaluation for Experiment Reproduction | Hanhua Hong | Computation and Language (cs.CL) |
| Knowledgeless Language Models: Suppressing Parametric Recall for Evidence-Grounded Language Modeling | Roi Cohen | Computation and Language (cs.CL) |
| The One-Word Census: Answer-Choice Conformity Across 44 Language Models | Tapan Parikh | Computation and Language (cs.CL) |
| Epistemic Stance Flexibility Probing: Measuring Prompt-Conditioned Register Shift in Large Language Models | Binwen Liu | Computation and Language (cs.CL) |
Call it in one line
Runs the actor and returns the dataset. Swap in your Apify token.
curl "https://api.apify.com/v2/acts/zenolvepro~arxiv-cs-cl/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("zenolvepro/arxiv-cs-cl").call()
for row in client.dataset(run["defaultDatasetId"]).iterate_items():
print(row)import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('zenolvepro/arxiv-cs-cl').call();
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);https://mcp.apify.com?tools=zenolvepro/arxiv-cs-cl
Point any MCP-capable agent at this endpoint and the feed becomes a callable tool.
Who uses it
NLP / LLM labs, research-monitoring tools, and language-AI product teams use it for monitoring, benchmarking, alerting, and enrichment.
Pricing
Billed through Apify. A tiny per-run start fee ($0.00005) applies. Only pay for records you actually pull.