Skip to content

This is a RESTful API made using Node.js, Express.js and MongoDB for a pet store.

Notifications You must be signed in to change notification settings

pinkman7009/Pet-Store-API

Repository files navigation

License: MIT Maintenance Ask Me Anything ! GitHub forks GitHub stars GitHub issues Open Source Love svg1

Pet Store API

Backend API for a Pet store

Routes

Pets

  • GET /api/v1/pets : Fetches all pets
  • GET /api/v1/pets/:id : Fetches a single pet by ID
  • POST /api/v1/pets : Creates a pet
  • PUT /api/v1/pets/:id : Updates a pet
  • DELETE /api/v1/pets/:id : Deletes a pet
  • GET /api/v1/owners/:ownerId/pets : Fetches the pets of an owner
  • GET /api/v1/pets/:petId/owner : Fetches the owner of a pet

Owners

  • GET /api/v1/owners : Fetches all owners
  • GET /api/v1/owners/:id : Fetches a single owner by ID

Authentication

  • POST /api/v1/auth/register : Register a user
  • POST /api/v1/auth/login : Log in a user
  • GET /api/v1/auth/me : Get logged in user
  • GET /api/v1/auth/logout : Log out a user

Usage

Rename "config/config.env.env" to "config/config.env" and update the values to your own

To Run

  1. Clone into repo
  2. Run npm install to install the dependencies
  3. Run npm run dev to start the server

Documentation

Detailed documentation with examples available at : https://documenter.getpostman.com/view/11590162/TWDZJbqb

(Set the Environment to Pet-Store)

About

This is a RESTful API made using Node.js, Express.js and MongoDB for a pet store.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published