COVID-ID
APIOfficial Indonesian COVID-19 Provincial Data API
Overview
The COVID-ID API provides official Indonesian government data on COVID-19 cases per province. Its primary endpoint is https://data.covid19.go.id/public/api/prov.json, returning JSON-formatted data including confirmed cases, recoveries, deaths, and active cases for each province. Ideal for developers building COVID-19 tracking apps, research tools, or public dashboards focused on regional trends in Indonesia, it sources data directly from the Indonesian Ministry of Health ensuring reliability and up-to-date information for users.
Example Integration (JavaScript)
fetch('https://data.covid19.go.id/public/api/prov.json')
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err)); Key Features
- RESTful API
- JSON response format
- No authentication required
- Official government data source
Frequently Asked Questions
? Is COVID-ID free to use?
Yes, COVID-ID is a public, free-to-use API provided by the Indonesian government.
? Does it require an API Key?
No, authentication is not required to access the COVID-ID API endpoint.
? What is the response format?
The API returns data in JSON format, containing structured information on COVID-19 cases per Indonesian province.
Top Alternatives
People Also Ask about COVID-ID
Tool Info
Pros
- ⊕ Reliable official statistics
- ⊕ Free and open access
- ⊕ Easy to integrate with applications
- ⊕ Up-to-date provincial data
Cons
- ⊖ Limited to provincial-level data only
- ⊖ No explicit rate limit documentation
- ⊖ Single endpoint available