pokeapi

How can i get all the pokémon types automatically with pokeapi?

How can i get all the pokémon types automatically with pokeapi? Question: I’m a beginner programmer, I’m adventuring with APIs and python. I would like to know if I can get all types of pokémon withou passing a number as I did here: import requests name = "charizard" url = f’https://pokeapi.co/api/v2/pokemon/%7Bname%7D’ poke_request = requests.get(url) poke_request …

Total answers: 2