Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Android
1.7K+ articles
Kotlin
707+ articles
Kotlin Android
355+ articles
Java-Android
240+ articles
Android-Jetpack
238+ articles
NodeJS-API
24+ articles
Node.js
19+ articles
Android Retrofit Library
8 posts
Recent Articles
Steps to Integrate of Local Host with Android Kotlin
Last Updated: 23 July 2025
In this article, we will build an Android app using Kotlin that connects to a local host server. You will learn how to configure your development environment, set up a loc...
read more
Android
Node.js
Kotlin Android
NodeJS-API
Android Retrofit Library
How to GET Data From API using Retrofit Library in Android?
Last Updated: 23 July 2025
A GET request is one of the HTTP request methods that can be used to retrieve data from a server. In an API context, a GET request is typically used to retrieve a specific...
read more
Kotlin
Android Retrofit Library
Android - POST Raw Whole JSON in the Body of a Retrofit Request
Last Updated: 23 July 2025
REST APIs provide us a functionality with the help of which we can add data to our database using REST API. For posting this data to our database we have to use the Post m...
read more
Picked
Android
Kotlin Android
Android Retrofit Library
Java-Android
How to Post Data to API using Retrofit in Android using Jetpack Compose?
Last Updated: 23 July 2025
APIs are used within Android Applications to interact with databases to perform various CRUD operations on data within the database such as adding new data, reading the ex...
read more
Kotlin
Android-Jetpack
Android Retrofit Library
How to Update Data in API using Retrofit in Android using Jetpack Compose?
Last Updated: 23 July 2025
Android applications use APIs within Android Applications to access data from databases. We can perform several operations using APIs such as Reading, Writing, and Updatin...
read more
Kotlin
Android-Jetpack
Android Retrofit Library
Android - Extract Data From JSON Array using Retrofit Library with Jetpack Compose
Last Updated: 23 July 2025
JSON responses are of 2 types i.e. JSON Object and JSON Array. JSON Array consists of individual JSON objects which are having same similar structure but have different va...
read more
Kotlin
Android-Jetpack
Android Retrofit Library
Android - Extract Data From JSON Array using Retrofit Library with Kotlin
Last Updated: 23 July 2025
In the android application, the response from the server is in the form of JSON. We can get to see either a JSON Array or a JSON Object in the response. JSON Array is the ...
read more
Kotlin
Android Retrofit Library
Introduction to Retrofit in Android
Last Updated: 18 February 2025
Retrofit is a type-safe HTTP client for Android, developed by Square. It simplifies network operations by allowing developers to define REST API interactions using Java/Ko...
read more
Android
Kotlin Android
Android Retrofit Library
Java-Android