An open API service indexing awesome lists of open source software.

https://github.com/neha9849/quotes-api


https://github.com/neha9849/quotes-api

express nodejs rest-api

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Quotes API
This is a REST API which allows you to do CRUD operations on quotes.
## Setup
1. Install the dependencies
```
npm install
```
2. Run the server
```
npm start
```
## Endpoints
* Get all quotes : `GET /quotes`
* Create quote : `POST /quotes`
* Get quote by id : `GET /quotes/:id`
* Delete quote by id : `DELETE /quotes/:id`
* Update quote by id : `PATCH /quotes/:id`