Skip to main content

Free API of COVID-19 (Corona Updates India) State/City Updates Daily

COVID-19 (Corona Updates India) State/City Updates Daily Free API


In this Pandemic Situation everyone want to make own product

So This is best idea to make product and make everyone helpful is to provide information regarding
Corona Virus

You can either make a website or Android/iOS Application for guide all people

Here is one best website https://www.covid19india.org/ for information in India

Now our problem is gather data. It is really hard to get updates related to COVID-19

Or we also need a server or database management for manage all the data

The solution is here

Here are some List of API which will provide you a free information

-> Patient Level : Raw Data Partition 1 (Till Apr 19)

https://api.covid19india.org/raw_data1.json

-> Patient Level : Raw Data Partition 2 (From Apr 20 to Apr 26)

https://api.covid19india.org/raw_data2.json

-> Patient Level : Raw Data Partition 3 (From Apr 27 to May 09)

https://api.covid19india.org/raw_data3.json

-> Patient Level : Raw Data Partition 4 (From May 10 onwards)

https://api.covid19india.org/raw_data4.json

-> National Level :Time series, State-wise stats and Test counts

https://api.covid19india.org/data.json

-> State Level : has district-wise info

https://api.covid19india.org/state_district_wise.json

-> State Level : has district-wise info V2 (minor difference in structure) https://

api.covid19india.org/v2/state_district_wise.json

-> State Level : Daily changes

https://api.covid19india.org/states_daily.json

-> State Level : Testing data

https://api.covid19india.org/state_test_data.json

-> District Level : Daily changes

https://api.covid19india.org/districts_daily.json

-> District Level : Zones

https://api.covid19india.org/zones.json

-> Essentials and resources https://

api.covid19india.org/resources/resources.json

-> Raw Data (Partition 1 + Partition 2. Frozen after Apr 26th)

https://api.covid19india.org/raw_data.json

-> Deaths and Recoveries (Frozen after Apr 26th)

https://api.covid19india.org/deaths_recoveries.json

-> Travel history (No more updated)

https://api.covid19india.org/travel_history.json



You can find all the docs related tp this API here


Just have click and get JSON data and bind with your website/Applications

If you want to bind this data in android application here is the guide

How to bind JSON data in Android Using Retrofit

Hope this is helpful to you

Comments

Popular posts from this blog

Tri-States | Indeterminate Checkbox Android

Sometimes it is required to implement checkbox with 3 states Unchecked Checked Indeterminate So here is a simple example of how to implement Tri-States or you can say Indeterminate Checkbox Android First of all, make a custom class which is extend Checkbox import android.content.Context import android.util.AttributeSet import androidx.appcompat.widget.AppCompatCheckBox import com.android.tristatescheckbox.R class TriStatesCheckBox : AppCompatCheckBox { private var state = 0 constructor ( context: Context ?) : super ( context ) { init () } constructor ( context: Context ?, attrs: AttributeSet ?) : super ( context , attrs ) { init () } constructor ( context: Context ?, attrs: AttributeSet ?, defStyleAttr: Int ) : super ( context , attrs , defStyleAttr ) { init () } private fun init () { state = UNCHECKED...

API Level in Android

Android Version Released API Level Name Build Version Code Android 7.1 December 2016 25 Nougat Android.OS.BuildVersionCodes.NMr1 Android 7.0 August 2016 24 Nougat Android.OS.BuildVersionCodes.N Android 6.0 August 2015 23 Marshmallow Android.OS.BuildVersionCodes.M Android 5.1 March 2015 22 Lollipop Android.OS.BuildVersionCodes.LollipopMr1 Android 5.0 November 2014 21 Lollipop Android.OS.BuildVersionCodes.Lollipop Android 4.4W June 2014 20 Kitkat Watch Android.OS.Bui...

HORIZONTAL FLIP ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new HorizontalFlip Transformation ()); That's It you're done.