Compact Pokemon REST API to store basic informations based on pokeapi
Access the API here: https://compact-pokeapi.herokuapp.com
Open endpoints require no authentication
- Login:
POST /api/user/login
- Show all pokemons:
GET /api/pokemon
- Show specific pokemon:
GET /api/pokemon/{id}
- Show six best pokemons:
GET /api/six-best/{attr}
Each endpoint manipulates or displays information related to the user whose Token is provided with the request
- Register:
POST /api/user/register
- Add new pokemon:
POST /api/pokemon
- Remove all pokemons:
DELETE /api/pokemon
- Update all pokemon attributes:
PUT /api/pokemon/{id}
- Update specific pokemon attributes:
PATCH /api/pokemon/{id}
- Remove specific pokemon:
DELETE /api/pokemon/{id}