Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markiiankostiv/fullstack-project
https://github.com/markiiankostiv/fullstack-project
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/markiiankostiv/fullstack-project
- Owner: MarkiianKostiv
- Created: 2024-06-19T12:53:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-19T12:58:28.000Z (7 months ago)
- Last Synced: 2024-11-17T09:16:22.911Z (2 months ago)
- Language: TypeScript
- Size: 186 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Routes
## Users
### Get all [`http://localhost:3002/api/users`]
### Get by Id [`http://localhost:3002/api/users/:id`]
- You need to substitute user id in place of :id
### Update user by id [`http://localhost:3002/api/users/:id`]
- You need get user data using [`Get user by id`] request
- You need to substitute user id in place of :id### Delete user by id [`http://localhost:3002/api/users/:id`]
- You need to substitute user id in place of :id
## Fighters
### Get all [`http://localhost:3000/api/fighters`]
### Get by Id [`http://localhost:3000/api/fighters:id`]
- You need to substitute fighter id in place of :id
### Update user by id [`http://localhost:3000/api/fighters:id`]
- You need get fighter data using [`Get user by id`] request
- You need to substitute fighter id in place of :id### Delete user by id [`http://localhost:3000/api/fighters:id`]
- You need to substitute fighter id in place of :id