← Meelelahutus

Pokemon üksikasjad

GET /pokemon/:name

Saage complete data for any Pokemon by name or Pokedex number. Tagastab types, abilities, base stats (HP/Attack/Defense/Speed), height, weight, sprite images (front/back/shiny/official artwork), and move count. Andmed PokeAPI.

Parameetrid

name kohustuslik

Pokemon name or Pokedex number

Näidispäringud

Põhikasutus
curl https://nordapi.ee/api/v1/pokemon/pikachu
Look up Pikachu
curl https://nordapi.ee/api/v1/pokemon/pikachu
Look up by Pokedex number
curl https://nordapi.ee/api/v1/pokemon/25
Look up Charizard
curl https://nordapi.ee/api/v1/pokemon/charizard

Reaalajas vastus

{
  "data": {
    "abilities": [
      {
        "is_hidden": false,
        "name": "static"
      },
      {
        "is_hidden": true,
        "name": "lightning-rod"
      }
    ],
    "base_experience": 112,
    "height": 4,
    "id": 25,
    "moves_count": 105,
    "name": "pikachu",
    "sprites": {
      "back": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/25.png",
      "front": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/25.png",
      "official_artwork": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/25.png",
      "shiny": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/25.png"
    },
    "stats": [
      {
        "base": 35,
        "name": "hp"
      },
      {
        "base": 55,
        "name": "attack"
      },
      {
        "base": 40,
        "name": "defense"
      },
      {
        "base": 50,
        "name": "special-attack"
      },
      {
        "base": 50,
        "name": "special-defense"
      },
      {
        "base": 90,
        "name": "speed"
      }
    ],
    "types": [
      "electric"
    ],
    "weight": 60
  },
  "success": true
}