Research Data API

Open access to research data for reproducible analysis and meta-research

Overview

All research data is available via JSON and CSV APIs for immediate use in statistical analysis, meta-research, and data visualization. No authentication required.

πŸ”“
Open Access

No API keys or authentication needed

πŸ“Š
Multiple Formats

JSON for APIs, CSV for Excel/R/Python

πŸ”„
Auto-Updated

Synced with latest research outputs

API Endpoints

All Data

JSON

Complete dataset including publications, projects, and blog posts in JSON format

/api/all.json Try it β†’
Example: curl https://kimyonghee.com/api/all.json

Publications (JSON)

JSON

All research publications with metadata including citations, impact factors, and abstracts

/api/publications.json Try it β†’
Example: curl https://kimyonghee.com/api/publications.json

Publications (CSV)

CSV

Publications data in CSV format for Excel, R, or Python analysis

/api/publications.csv Try it β†’
Example: curl https://kimyonghee.com/api/publications.csv > publications.csv

Projects (JSON)

JSON

Research projects and policy analysis work with detailed metadata

/api/projects.json Try it β†’
Example: curl https://kimyonghee.com/api/projects.json

Projects (CSV)

CSV

Projects data in CSV format for data analysis tools

/api/projects.csv Try it β†’
Example: curl https://kimyonghee.com/api/projects.csv > projects.csv

Blog Posts (JSON)

JSON

Blog posts with metadata and excerpts

/api/blog.json Try it β†’
Example: curl https://kimyonghee.com/api/blog.json

Usage Examples

Python Example

import requests
import pandas as pd

# Fetch publications data
response = requests.get('https://kimyonghee.com/api/publications.json')
data = response.json()

# Convert to DataFrame
df = pd.DataFrame(data)
print(df.head())

R Example

library(jsonlite)
library(httr)

# Fetch publications data
response <- GET("https://kimyonghee.com/api/publications.json")
data <- fromJSON(content(response, "text"))

# View data
head(data)

Excel Import (CSV)

1. Open Excel
2. Data > From Web
3. Enter URL: https://kimyonghee.com/api/publications.csv
4. Click Load

Data Schema

Publications

  • title: Publication title
  • authors: Array of author names
  • journal: Journal name
  • year: Publication year
  • doi: Digital Object Identifier
  • citations: Citation count
  • impact_factor: Journal impact factor
  • abstract: Publication abstract

Projects

  • title: Project title
  • slug: URL-friendly identifier
  • description: Brief description
  • category: Project category
  • date: Publication date
  • tags: Array of topic tags

Terms of Use

This data is provided for academic research, meta-analysis, and educational purposes. When using this data:

  • Cite the original publications appropriately
  • Include attribution when using in derivative works
  • Do not use for commercial purposes without permission
  • Share insights and findings with the research community

Questions or Issues?

For questions about the API or to report data issues, please contact yhkim1981@sunmoon.ac.kr