Build a REST API with Elixir and Phoenix

Build a REST API with Elixir and Phoenix

An APIApplication Programming Interface is an interface through which programs can talk to each other without knowing their inner specifics. It can be used to create a server-side program that can interact with various client applications.

In this project, we’ll start with a simple Phoenix application and use migrations to create a simple model and database. We will create both a JSON-based and an HTML-based API in this project. We will also see how to make different endpoints for our model to perform basic CRUD operations on a database.