/HTTPCatsApi

Rebuilt the HTTP Cat's Api to be a bit of a cleaner API, and for practice

Primary LanguageJavaScriptMIT LicenseMIT

HTTPCatsApi

Based off of the HTTPCat API. I re-built it to make it feel a bit Cleaner. Each "Status Cat" will be provided:

Key Value
ID ID in Current DataBase
Status_Code HTTP Status Code
Code_Name HTTP Code Name
Code_Desc HTTP Code Description
ImageURL HTTP Code Status Cat Image

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Install Dependencies

npm i

Start Server

npm run server

EndPoints

GET[/]: All of the HTTPCats

https://httpcatsapi.herokuapp.com/api/httpcats/

GET[/:id]: A Specific HTTPCat by their ID

https://httpcatsapi.herokuapp.com/api/httpcats/:id

Example:

https://httpcatsapi.herokuapp.com/api/httpcats/1

Which will return:

{
"id": 1,
"status_code": "100",
"code_name": "Continue",
"code_desc": "The server has received the request headers and the client should proceed to send the request body.",
"imageurl": "https://http.cat/100"
}

Deployment

Server is live here, the API is live here.