PISA Dataset
OECD
OECD PISA scores for 15-year-olds in reading, math, and science across 80 countries.
Math ScoreReading ScoreScience Score80 CountriesSocioeconomic Impact
No AuthFreeAnnualGlobal
Quick start
const res = await fetch(
'https://pisadataexplorer.oecd.org/rest/api/pisa/2022/reading?geoId=KOR,FIN,JPN,SGP&format=json'
);
const data = await res.json();
console.log('PISA reading scores:', JSON.stringify(data).slice(0, 300));
VisitUNESCO UIS API
UNESCO
UNESCO Institute for Statistics. Education, science, culture data globally.
Out-of-School ChildrenAdult LiteracyEducation FundingGender Parity IndexLearning Outcomes
API KeyFreeAnnualGlobal
Quick start
const res = await fetch(
`https://api.uis.unesco.org/api/public/data/indicators?indicator=CR.1&startYear=2020&endYear=2022&geoUnit=WORLD&apikey=${process.env.UNESCO_API_KEY}`
);
const { dataSets } = await res.json();
console.log('UNESCO education data:', JSON.stringify(dataSets).slice(0, 200));
VisitWorld Bank Education API
World Bank
Education indicators: literacy, enrollment, spending by country and year.
Literacy RatePrimary EnrollmentSecondary EnrollmentEducation SpendingPupil-Teacher Ratio
No AuthFreeAnnualGlobal
Quick start
const res = await fetch(
'https://api.worldbank.org/v2/country/all/indicator/SE.ADT.LITR.ZS?format=json&mrv=1&per_page=10'
);
const [, data] = await res.json();
data.forEach(d => {
if (d.value) console.log(`${d.country.value}: ${d.value.toFixed(1)}% literacy`);
});
Visit