Zenolve Feeds
Economics research data

NBER Working Papers API

New NBER economics working papers as structured JSON - title, paper number, and link, newest first.

Source: NBER via IDEAS / RePEc$0.005 / recordJSON · CSV · ExcelMCP tool for AI agents

What this feed does

NBER working papers are where much of empirical economics lands first. This feed scrapes the newest-first NBER series index on IDEAS/RePEc and returns each paper as structured JSON - title, series number, and link.

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.005 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
titlestringPaper title.
paper_numberstringNBER working-paper series number.
urlstring, URLLink to the paper's IDEAS/RePEc page (abstract + download).

Live sample

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

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~nber-working-papers/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"
Python
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("zenolvepro/nber-working-papers").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/nber-working-papers').call();
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
AI agents - Model Context Protocol (MCP)
https://mcp.apify.com?tools=zenolvepro/nber-working-papers

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

Who uses it

Research-intelligence tools, quant desks, grant consultants, and policy shops use it for monitoring, benchmarking, alerting, and enrichment.

Pricing

$0.005per 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

Is there a free NBER papers API?
NBER's own site gates bulk access; the public IDEAS/RePEc index is HTML. This feed returns it as JSON at $0.005 per record.
How current is it?
Live - each call scrapes the newest-first series index at request time.
What does each record include?
title, paper_number, and the url of the paper's abstract page.
Can I page deeper than the newest papers?
Yes - pass any page of the series index as the input URL.
Can an AI agent call this directly?
Yes - exposed as an MCP tool for native agent calls.