| Method | Endpoint | Description |
|---|---|---|
| GET | /pokemon | Retrieve all Pokémon, with details URL for each. |
| GET | /pokemon/<poke_id> | Retrieve a specific Pokémon by its ID. |
| GET | /mypokemon/<user_id>/<user_pokemon_id> | Retrieve a specific Pokémon for a user. |
| GET | /mypokemon/<user_id> | Retrieve all Pokémon for a user. |
| POST | /mypokemon/<user_id> | Create a new Pokémon for a user. |
| PUT | /mypokemon/<user_id>/<user_pokemon_id> | Update the name of a user's Pokémon. |
| DELETE | /mypokemon/<user_id>/<user_pokemon_id> | Delete a user's Pokémon. |