During this Code Along, we’ll be using Insomnia to make API requests to a REST-based API
https://css-colors-api.herokuapp.com/api/v1
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 |