← Afþreying

Skrá Pokemon

GET /pokemon

Skoðaðu allar 1.000+ Pokemon frá complete National Pokedex. Skilar names, IDs, and sprite myndaslóðum. Blaðsíðuskipt til að auðvelda skoðun. Gögn frá PokeAPI sem nær yfir allar generations from Red/Blue to Scarlet/Violet.

Breytur

limit valfrjálst sjálfgefið: 20

Pokemon per page (max 100)

offset valfrjálst sjálfgefið: 0

Starting position

Dæmi um fyrirspurnir

Grunnnotkun
curl "https://nordapi.ee/api/v1/pokemon?limit=10"
First 20 Pokemon
curl https://nordapi.ee/api/v1/pokemon
Pokemon 51-100
curl "https://nordapi.ee/api/v1/pokemon?limit=50&offset=50"
First 5 starter region
curl "https://nordapi.ee/api/v1/pokemon?limit=5"

Lifandi svar

{
  "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
}