Dart is the programming language created by Google and its very popular nowadays because it's providing the platform using which we can create a single code base for developing an application for Android, IOS and Web with the help of Flutter SDK. Today in this article we are going to explore how to create a REST API using the dart without Flutter. Here in this part of the article, we will explore two things. Expose Simple REST API using the DART programming language Connect Dart with the Postgress using the Model Create REST API in DART with aqueduct So for creating the rest API using the dart we are going to use the aqueduct package available at pub.dev . This package provides lots of functionality which help us for creating the REST API server. Let's start the creation of our REST API server. We required some setup before starting the coding. Dart should be installed into your server or local environment We required a Postgres database installed in your dev environment. Act