GET request to the endpoint below:
GET request to the URL https://pokeapi.co/api/v2/pokemon by copy-pasting the URL below:
/pokedex, /berry, and the other endpoints as well.
RESTful protocol
Learn more about RESTful protocol.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to create a request in Auk.
https://httpbin.org/get
GET request to the endpoint below:
https://pokeapi.co/api/v2
{
"ability": "https://pokeapi.co/api/v2/ability/",
"berry": "https://pokeapi.co/api/v2/berry/",
"pokedex": "https://pokeapi.co/api/v2/pokedex/",
"pokemon": "https://pokeapi.co/api/v2/pokemon/",
"version-group": "https://pokeapi.co/api/v2/version-group/"
}
GET request to the URL https://pokeapi.co/api/v2/pokemon by copy-pasting the URL below:
https://pokeapi.co/api/v2/pokemon
{
"count": 1279,
"next": "https://pokeapi.co/api/v2/pokemon?offset=20&limit=20",
"previous": null,
"results": [
{
"name": "bulbasaur",
"url": "https://pokeapi.co/api/v2/pokemon/1/"
},
{
"name": "ivysaur",
"url": "https://pokeapi.co/api/v2/pokemon/2/"
},
]
}
/pokedex, /berry, and the other endpoints as well.
Was this page helpful?