Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/enes9103/react_recap_crud_example_api


https://github.com/enes9103/react_recap_crud_example_api

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

        

# API Base URLs

## https://tutorials-api-cw.herokuapp.com/api/tutorials

## https://axios-example-cw.herokuapp.com/api/tutorials

## https://cw-axios-example.herokuapp.com/api/tutorials

### API ENDPOINTS

- GET `api/tutorials` get all Tutorials
- GET `api/tutorials/:id` get Tutorial by id
- POST `api/tutorials` add new Tutorial
- PUT `api/tutorials/:id` update Tutorial by id
- DELETE `api/tutorials/:id` remove Tutorial by id
- DELETE `api/tutorials` remove all Tutorials
- GET `api/tutorials/published` find all published Tutorials
- GET `api/tutorials?title=[kw]` find all Tutorials which title contains 'kw'

# Deployed Frontend

## https://axios-example.netlify.app/