eric-education-api
Search 2M+ education research records via the ERIC database API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Search 2M+ education research records via the ERIC database API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | eric-education-api |
| description | Search 2M+ education research records via the ERIC database API |
| metadata | {"openclaw":{"emoji":"🎓","category":"literature","subcategory":"search","keywords":["ERIC","education research","IES","pedagogy","teaching","educational technology"],"source":"https://eric.ed.gov/"}} |
ERIC is the world's largest digital library of education research, sponsored by the U.S. Institute of Education Sciences (IES). It indexes 2M+ records including journal articles, reports, conference papers, and dissertations covering all aspects of education. The API provides free, unauthenticated access to metadata and links to full text where available.
https://api.ies.ed.gov/eric/
# Basic keyword search
curl "https://api.ies.ed.gov/eric/?search=online+learning&format=json&rows=20"
# Search in specific fields
curl "https://api.ies.ed.gov/eric/?search=title:\"blended learning\"&format=json"
# Filter by publication date
curl "https://api.ies.ed.gov/eric/?search=STEM+education&start=0&rows=25&\
publicationdatestart=2023-01-01&publicationdateend=2026-12-31&format=json"
# Filter by publication type
curl "https://api.ies.ed.gov/eric/?search=formative+assessment&\
publicationtype=Journal+Articles&format=json"
# Filter by descriptor (ERIC thesaurus term)
curl "https://api.ies.ed.gov/eric/?search=descriptor:\"Higher Education\"&format=json"
# Peer-reviewed only
curl "https://api.ies.ed.gov/eric/?search=metacognition&peerreviewed=true&format=json"
| Parameter | Description | Example |
|---|---|---|
search | Free-text or field search | search=adaptive+learning |
format | Response format | json or xml |
rows | Results per page (max 200) | rows=50 |
start | Pagination offset | start=50 |
publicationtype | Document type | Journal Articles, Reports, Dissertations/Theses |
publicationdatestart | From date | 2024-01-01 |
publicationdateend | To date | 2026-12-31 |
peerreviewed | Peer-reviewed filter | true or false |
descriptor | ERIC thesaurus term | descriptor:"Distance Education" |
educationlevel | Education level | Higher Education, Elementary Education |
subject | Subject area | subject:"Mathematics Education" |
| Field | Description |
|---|---|
title | Article title |
author | Author name |
descriptor | ERIC controlled vocabulary term |
source | Journal/source name |
abstract | Abstract text |
id | ERIC document ID (e.g., EJ1234567) |
| Type | Description |
|---|---|
Journal Articles | Peer-reviewed journal articles |
Reports - Research | Research reports |
Reports - Descriptive | Descriptive reports |
Reports - Evaluative | Program evaluations |
Dissertations/Theses | Graduate research |
Speeches/Meeting Papers | Conference presentations |
Books | Books and book chapters |
{
"response": {
"numFound": 8450,
"start": 0,
"docs": [
{
"id": "EJ1389012",
"title": "Effects of AI Tutoring on Student Learning Outcomes",
"author": ["Smith, John", "Chen, Wei"],
"source": "Journal of Educational Technology",
"publicationdateyear": 2024,
"description": "This study examines the impact of AI-powered tutoring...",
"descriptor": ["Artificial Intelligence", "Tutoring", "Academic Achievement"],
"educationlevel": ["Higher Education"],
"peerreviewed": "T",
"url": "https://eric.ed.gov/?id=EJ1389012",
"publicationtype": "Journal Articles",
"issn": "1234-5678"
}
]
}
}
import requests
BASE_URL = "https://api.ies.ed.gov/eric/"
def search_eric(query: str, rows: int = 25,
peer_reviewed: bool = True,
pub_type: str = None,
from_year: int = None) -> list:
"""Search the ERIC education research database."""
params = {
"search": query,
"format": "json",
"rows": rows,
}
if peer_reviewed:
params["peerreviewed"] = "true"
if pub_type:
params["publicationtype"] = pub_type
if from_year:
params["publicationdatestart"] = f"{from_year}-01-01"
resp = requests.get(BASE_URL, params=params)
resp.raise_for_status()
data = resp.json()
results = []
for doc in data.get("response", {}).get("docs", []):
results.append({
"id": doc.get("id"),
"title": doc.get("title"),
"authors": doc.get("author", []),
"source": doc.get("source"),
"year": doc.get("publicationdateyear"),
"abstract": doc.get("description", "")[:300],
"descriptors": doc.get("descriptor", []),
"level": doc.get("educationlevel", []),
"url": doc.get("url"),
})
return results
def search_by_descriptor(descriptor: str, rows: int = 50) -> list:
"""Search using ERIC thesaurus controlled vocabulary."""
return search_eric(f'descriptor:"{descriptor}"', rows=rows)
# Example: find recent AI in education research
papers = search_eric("artificial intelligence classroom",
from_year=2023, rows=10)
for p in papers:
print(f"[{p['year']}] {p['title']}")
print(f" Descriptors: {', '.join(p['descriptors'][:5])}")
# Example: search by ERIC descriptor
papers = search_by_descriptor("Gamification")
for p in papers:
print(f"{p['id']}: {p['title']} — {p['source']}")
ERIC uses a controlled vocabulary of 12,000+ descriptors for consistent indexing. Key descriptors include:
| Descriptor | Coverage |
|---|---|
Distance Education | Online/remote learning |
Educational Technology | EdTech tools and methods |
Higher Education | University-level education |
STEM Education | Science, technology, engineering, math |
Teacher Education | Teacher training and development |
Assessment | Testing and evaluation |
Curriculum Development | Curriculum design |
Special Education | Inclusive education |
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
公司金融实证研究的"漏斗式选题查找器"。互动开场先后询问 (1) 研究方向、(2) 候选标题数量 N, 再扫描全球文献(已出版英文学术期刊 + SSRN working paper + 全球高校 department seminar 1 年内日程),基于 Edmans (2024) "1000 Rejections" 红线生成 N 个候选标题,**通过并行 subagent(Agent 工具)批量生成计划书 + 查新;每个 subagent 必须强制调用 Skill 工具加载 econfin-proposal 与 novelty-check 两个预设 skill 完成各自模块**,**只有当 novelty score >= 9 时(即 JF/JFE/RFS 顶刊层次),subagent 才把 proposal + 查新报告合并的 md 写入 F:\Dropbox\CC\选题大全\<研究方向短名>\(以"简短选题名称-分数"命名,子文件夹名由 Step 0 从用户输入的研究方向派生);< 9 分的选题在 subagent 内部直接丢弃,绝不写盘、绝不输出**。当用户说"找选题"、"帮我找选题"、"想做 X 方向"、 "empirical CF idea search"、"批量生成研究计划书"、"100 ideas"、"econfin-idea-finder" 时触发。
Create and compile beautiful Beamer presentations following the Rhetoric of Decks philosophy. Use when making slides, creating decks, or compiling .tex presentation files.
Scaffold a new research project with standard directory structure, CLAUDE.md template, and documented README. Use this at the start of every new project to ensure consistent organization.
Download, split, and deeply read academic PDFs. Use when asked to read, review, or summarize an academic paper. Splits PDFs into 4-page chunks, reads them in small batches, and produces structured reading notes — avoiding context window crashes and shallow comprehension.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.