Code Along: CRUD API Requests

Code Along: CRUD API Requests with Colors API

During this Code Along, we’ll be using Insomnia to make API requests to a REST-based API

BASE API URL:

https://css-colors-api.herokuapp.com/api/v1

API Endpoints:

Endpoint Description
GET /colors retrieve list of colors
GET /colors/:id retrieve details for one color
POST /colors create a new color
PUT /colors/:id update an existing color
DELETE /colors/:id delete an existing color
GET /colors/search?q=purple search for a color name or hexcode
GET /colors/user_generated retrieve list of colors created by users