Skip to content

Latest commit

 

History

History
71 lines (45 loc) · 1.1 KB

File metadata and controls

71 lines (45 loc) · 1.1 KB

SunTzuAPI

An API that provides you with Sun Tzu quotes

Acknowledgements

Authors

API Reference

Get All Quotes

  GET /quotes

Returns an array of all the quotes

Get Quote By Id

  GET /quote/${id}
Parameter Type Description
id string Required. Id of quote to fetch

Returns 200 and the quote of that ID if the ID is valid
Returns 404 if the ID is invalid

Get Random Quote

  GET /quote

Returns a random quote

Also, dont forget to checkout the Swagger Documentation

Run Locally

Clone the project

  git clone https://github.com/OneByteGH/SunTzuAPI

Go to the project directory

  cd SunTzuAPI

Install dependencies

  npm install

Start the server

  node index.js