Overview
MyVaccination is a free public API providing vaccination statistics for Malaysia, including data on doses administered, vaccine types, and regional breakdowns. It requires no authentication and is easy to query with simple HTTP GET requests. Developers can use it to build dashboards tracking Malaysia's vaccination rollout.
Beginner Tip
The data is organized by date and state, so start with the national-level endpoint before drilling into state-specific data to understand the overall structure.
Available Data
Example Response
{
"name": "Japan",
"capital": "Tokyo",
"population": 125800000,
"region": "Asia",
"languages": [
"Japanese"
],
"flag": "https://flagcdn.com/jp.svg",
"currencies": [
{
"code": "JPY",
"name": "Japanese yen"
}
]
} Field Reference
date Date of the vaccination record in YYYY-MM-DD format. daily_partial Number of people who received their first dose on that date. daily_full Number of people who completed the full vaccination course on that date. cumul_partial Cumulative count of partially vaccinated individuals up to that date. cumul_full Cumulative count of fully vaccinated individuals up to that date. Implementation Example
const url = "https://documenter.getpostman.com/view/16605343/Tzm8GG7u";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Coronavirus
This Coronavirus API provides the latest global Covid-19 case counts, deaths, and recoveries aggregated from public health sources.
Coronavirus in the UK
The Coronavirus in the UK API provides official UK Government data on Covid-19 cases, deaths, and vaccinations broken down by region and nation.
Covid Tracking Project
⭐ Beginner's PickThe Covid Tracking Project API provides historical US Covid-19 data including tests, hospitalizations, and deaths at the state and national level.
Covid-19
Covid-19 provides programmatic access to covid 19 spread, infection and recovery via REST API.
Covid-19
⭐ Beginner's PickThe Covid-19 API by M-Media Group provides daily case counts, deaths, and recoveries for every country in the world.