GET /pokemon
Durchsuchen Sie alle 1,000+ Pokemon from the complete National Pokedex. Liefert names, IDs, und sprite image URLs. Paginiert for easy browsing. Daten von PokeAPI covering all generations from Red/Blue to Scarlet/Violet.
limit
optional
Standard: 20
Pokemon per page (max 100)
offset
optional
Standard: 0
Starting position
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
limit |
Nein | 20 | Pokemon per page (max 100) |
offset |
Nein | 0 | Starting position |
curl "https://nordapi.ee/api/v1/pokemon?limit=10"
curl https://nordapi.ee/api/v1/pokemon
curl "https://nordapi.ee/api/v1/pokemon?limit=50&offset=50"
curl "https://nordapi.ee/api/v1/pokemon?limit=5"
{
"count": 10,
"data": [
{
"id": "1",
"name": "bulbasaur",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png"
},
{
"id": "2",
"name": "ivysaur",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/2.png"
},
{
"id": "3",
"name": "venusaur",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/3.png"
},
{
"id": "4",
"name": "charmander",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/4.png"
},
{
"id": "5",
"name": "charmeleon",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/5.png"
},
{
"id": "6",
"name": "charizard",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/6.png"
},
{
"id": "7",
"name": "squirtle",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/7.png"
},
{
"id": "8",
"name": "wartortle",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/8.png"
},
{
"id": "9",
"name": "blastoise",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/9.png"
},
{
"id": "10",
"name": "caterpie",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/10.png"
}
],
"success": true,
"total": 1350
}