Vai al contenuto
GET /v1/pokemon

A Pokemon by name, or a list by type

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/pokemonshowdown-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/pokemonshowdown-api/v1/pokemon" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pokemonshowdown-api/v1/pokemon", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pokemonshowdown-api/v1/pokemon");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/pokemonshowdown-api/v1/pokemon",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "pokemon": {
            "id": "garchomp",
            "num": 445,
            "evos": [],
            "name": "Garchomp",
            "color": "Blue",
            "prevo": "Gabite",
            "types": [
                "Dragon",
                "Ground"
            ],
            "sprite": "https://play.pokemonshowdown.com/sprites/dex/garchomp.png",
            "height_m": 1.9,
            "abilities": [
                {
                    "name": "Sand Veil",
                    "slot": "slot0"
                },
                {
                    "name": "Rough Skin",
                    "slot": "hidden"
                }
            ],
            "evo_level": 48,
            "weight_kg": 95,
            "base_stats": {
                "hp": 108,
                "speed": 102,
                "attack": 130,
                "defense": 95,
                "sp_attack": 80,
                "sp_defense": 85
            },
            "egg_groups": [
                "Monster",
                "Dragon"
            ],
            "base_stat_total": 600
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:30.291Z",
        "request_id": "22dd7b33-f016-4f74-9af4-66b08a3a6be5"
    },
    "status": "ok",
    "message": "Pokemon retrieved successfully",
    "success": true
}