All Data
JSONComplete dataset including publications, projects, and blog posts in JSON format
/api/all.json
Try it β
curl https://kimyonghee.com/api/all.json Open access to research data for reproducible analysis and meta-research
All research data is available via JSON and CSV APIs for immediate use in statistical analysis, meta-research, and data visualization. No authentication required.
No API keys or authentication needed
JSON for APIs, CSV for Excel/R/Python
Synced with latest research outputs
Complete dataset including publications, projects, and blog posts in JSON format
/api/all.json
Try it β
curl https://kimyonghee.com/api/all.json All research publications with metadata including citations, impact factors, and abstracts
/api/publications.json
Try it β
curl https://kimyonghee.com/api/publications.json Publications data in CSV format for Excel, R, or Python analysis
/api/publications.csv
Try it β
curl https://kimyonghee.com/api/publications.csv > publications.csv Research projects and policy analysis work with detailed metadata
/api/projects.json
Try it β
curl https://kimyonghee.com/api/projects.json Projects data in CSV format for data analysis tools
/api/projects.csv
Try it β
curl https://kimyonghee.com/api/projects.csv > projects.csv Blog posts with metadata and excerpts
/api/blog.json
Try it β
curl https://kimyonghee.com/api/blog.json 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()) library(jsonlite)
library(httr)
# Fetch publications data
response <- GET("https://kimyonghee.com/api/publications.json")
data <- fromJSON(content(response, "text"))
# View data
head(data) 1. Open Excel
2. Data > From Web
3. Enter URL: https://kimyonghee.com/api/publications.csv
4. Click Load title: Publication titleauthors: Array of author namesjournal: Journal nameyear: Publication yeardoi: Digital Object Identifiercitations: Citation countimpact_factor: Journal impact factorabstract: Publication abstracttitle: Project titleslug: URL-friendly identifierdescription: Brief descriptioncategory: Project categorydate: Publication datetags: Array of topic tagsThis data is provided for academic research, meta-analysis, and educational purposes. When using this data:
For questions about the API or to report data issues, please contact yhkim1981@sunmoon.ac.kr