repec-economics-api

Access 4M+ economics working papers and articles via RePEc API

191 stars

Best use case

repec-economics-api is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Access 4M+ economics working papers and articles via RePEc API

Teams using repec-economics-api should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/repec-economics-api/SKILL.md --create-dirs "https://raw.githubusercontent.com/wentorai/research-plugins/main/skills/domains/economics/repec-economics-api/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/repec-economics-api/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How repec-economics-api Compares

Feature / Agentrepec-economics-apiStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Access 4M+ economics working papers and articles via RePEc API

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# RePEc (Research Papers in Economics) API

## Overview

RePEc is the largest decentralized bibliographic database for economics, indexing 4.4M+ items (working papers, journal articles, books, software) from 2,600+ publishers. It powers IDEAS and EconPapers — the two most-used economics paper search engines. The API provides metadata access and citation data. Free, no authentication required for basic access.

## Access Methods

### IDEAS Search API

```bash
# Search economics papers
curl "https://ideas.repec.org/cgi-bin/htsearch?q=monetary+policy+inflation&cmd=Search&fmt=json"

# Search specific types
# Working papers
curl "https://ideas.repec.org/cgi-bin/htsearch?q=fiscal+stimulus&ul=%%2Fp%%2F&fmt=json"

# Journal articles
curl "https://ideas.repec.org/cgi-bin/htsearch?q=trade+liberalization&ul=%%2Fa%%2F&fmt=json"
```

### RePEc Simple API

```bash
# Get metadata for a handle
curl "https://api.repec.org/handle?handle=RePEc:nbr:nberwo:28104"

# Author profile by short-id
curl "https://api.repec.org/author?short-id=ppi1"

# List items in a series
curl "https://api.repec.org/series?series=RePEc:nbr:nberwo"
```

### CitEc Citation Data

```bash
# Get citations for a paper
curl "https://citec.repec.org/api/plain/RePEc:nbr:nberwo:28104"

# Response: list of citing paper handles
```

### LogEc Usage Statistics

```bash
# Get download/view statistics
curl "https://logec.repec.org/scripts/paperstat.pf?h=RePEc:nbr:nberwo:28104"
```

## RePEc Handle Structure

```
RePEc:{archive}:{series}:{id}

Examples:
RePEc:nbr:nberwo:28104   → NBER Working Paper 28104
RePEc:aea:aecrev:v:114:y:2024:i:1:p:1-25  → AER article
RePEc:ecm:emetrp:v:92:y:2024:i:3:p:821-845 → Econometrica article
RePEc:red:sed024:1234    → SED 2024 meeting paper
```

### Major Archives

| Prefix | Publisher |
|--------|-----------|
| `nbr` | National Bureau of Economic Research (NBER) |
| `aea` | American Economic Association |
| `ecm` | Econometric Society |
| `wbk` | World Bank |
| `imf` | International Monetary Fund |
| `fed` | Federal Reserve System |
| `cpr` | Centre for Economic Policy Research (CEPR) |

## Python Usage

```python
import requests

IDEAS_URL = "https://ideas.repec.org/cgi-bin/htsearch"
CITEC_URL = "https://citec.repec.org/api/plain"


def search_economics(query: str, max_results: int = 20,
                     paper_type: str = None) -> list:
    """Search economics papers on IDEAS/RePEc."""
    params = {
        "q": query,
        "cmd": "Search",
        "fmt": "json",
        "ps": max_results,
    }
    if paper_type == "working_papers":
        params["ul"] = "%2Fp%2F"
    elif paper_type == "articles":
        params["ul"] = "%2Fa%2F"

    resp = requests.get(IDEAS_URL, params=params, timeout=30)
    resp.raise_for_status()
    data = resp.json()

    results = []
    for item in data.get("matches", []):
        results.append({
            "title": item.get("title", ""),
            "url": item.get("url", ""),
            "handle": item.get("handle", ""),
            "authors": item.get("authors", ""),
            "date": item.get("date", ""),
            "abstract": item.get("abstract", "")[:300],
        })
    return results


def get_citations(handle: str) -> list:
    """Get papers citing a given RePEc handle."""
    resp = requests.get(f"{CITEC_URL}/{handle}", timeout=30)
    resp.raise_for_status()
    citations = []
    for line in resp.text.strip().split("\n"):
        line = line.strip()
        if line and line.startswith("RePEc:"):
            citations.append(line)
    return citations


def search_working_papers(topic: str) -> list:
    """Search specifically for working papers."""
    return search_economics(topic, paper_type="working_papers")


# Example: find monetary policy research
papers = search_economics("central bank digital currency", max_results=10)
for p in papers:
    print(f"[{p['date']}] {p['title']}")
    print(f"  {p['authors']}")

# Example: citation analysis
if papers and papers[0].get("handle"):
    cites = get_citations(papers[0]["handle"])
    print(f"\nCited by {len(cites)} papers")
    for c in cites[:5]:
        print(f"  {c}")
```

## Key Data Products

| Product | URL | Description |
|---------|-----|-------------|
| IDEAS | ideas.repec.org | Full-text search engine |
| EconPapers | econpapers.repec.org | Alternative search interface |
| CitEc | citec.repec.org | Citation analysis |
| LogEc | logec.repec.org | Usage statistics |
| AuthorService | authors.repec.org | Author profiles and rankings |
| CollEc | collec.repec.org | Institutional research output |

## Rankings

RePEc publishes monthly rankings of economists, institutions, and journals based on citations, downloads, and h-index:

```bash
# Top economists
curl "https://ideas.repec.org/top/top.person.all.html"

# Top institutions
curl "https://ideas.repec.org/top/top.inst.all.html"
```

## References

- [IDEAS/RePEc](https://ideas.repec.org/)
- [EconPapers](https://econpapers.repec.org/)
- [RePEc Author Service](https://authors.repec.org/)
- [CitEc](https://citec.repec.org/)
- Zimmermann, C. (2013). "Academic Rankings with RePEc." *Econometrics* 1(3): 249-264.

Related Skills

post-labor-economics

191
from wentorai/research-plugins

Post-labor economies with automation, UBI, and wealth distribution

development-economics-guide

191
from wentorai/research-plugins

Apply development economics research methods and data sources

behavioral-economics-guide

191
from wentorai/research-plugins

Behavioral economics research methods and key frameworks

economics-skills

191
from wentorai/research-plugins

9 economics skills. Trigger: economic modeling, policy analysis, macroeconomic data, FRED. Design: theory plus empirical methods with standard economics databases.

thuthesis-guide

191
from wentorai/research-plugins

Write Tsinghua University theses using the ThuThesis LaTeX template

thesis-writing-guide

191
from wentorai/research-plugins

Templates, formatting rules, and strategies for thesis and dissertation writing

thesis-template-guide

191
from wentorai/research-plugins

Set up LaTeX templates for PhD and Master's thesis documents

sjtuthesis-guide

191
from wentorai/research-plugins

Write SJTU theses using the SJTUThesis LaTeX template with full compliance

scientific-article-pdf

191
from wentorai/research-plugins

Generate publication-ready scientific article PDFs from templates

novathesis-guide

191
from wentorai/research-plugins

LaTeX thesis template supporting multiple universities and formats

graphical-abstract-guide

191
from wentorai/research-plugins

Create SVG graphical abstracts for journal paper submissions

elegant-paper-template

191
from wentorai/research-plugins

Beautiful LaTeX template for working papers and technical reports