arXiv Computer Vision Papers API
The latest arXiv cs.CV (computer vision) preprints as structured JSON - title, authors, and subject.
What this feed does
cs.CV is where new computer-vision research lands first. This feed scrapes arXiv's recent cs.CV 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 |
|---|---|---|
| DermDepth: Toward Monocular Metric Scale 3D Reconstruction Models for Dermatology | Héctor Carrión | Computer Vision and Pattern Recognition (cs.CV) |
| X-Lens: Real-Time Metric Depth Estimation with Heterogeneous Cameras | Heng Zhou | Computer Vision and Pattern Recognition (cs.CV) |
| Controllable Generation of Diverse Dermatological Imagery for Fair and Efficient Malignancy Classification | Héctor Carrión | Computer Vision and Pattern Recognition (cs.CV) |
| ViCo3D: Empowering LiDAR-based Collaborative 3D Object Detection with Vision Foundation Models | Haojie Ren | Computer Vision and Pattern Recognition (cs.CV) |
| Point Tracking in Surgery--The 2025 Surgical Tattoos in Infrared Challenge (STIRC2025) | Adam Schmidt | Computer Vision and Pattern Recognition (cs.CV) |
| Domain-Incremental Remote Sensing Change Detection via Difference-Guided Adaptation and Frequency-Decoupled Distillation | Daifeng Peng | Computer Vision and Pattern Recognition (cs.CV) |
| Open-KNEAD: Knowledge-grounded Nutrition Estimation via Agentic Decomposition | Bruce Coburn | Computer Vision and Pattern Recognition (cs.CV) |
| Rank-1 Identity Consensus Predicts Gallery Enrollment in 1:N Face Matching More Accurately than Score Thresholding | Gabriella Pangelinan | Computer Vision and Pattern Recognition (cs.CV) |
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-cv/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-cv").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-cv').call();
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);https://mcp.apify.com?tools=zenolvepro/arxiv-cs-cv
Point any MCP-capable agent at this endpoint and the feed becomes a callable tool.
Who uses it
Computer-vision labs, research-monitoring tools, and CV-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.