Naar de inhoud
GET /v1/moves

Moves filtered by type & category

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/pokemonshowdown-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/pokemonshowdown-api/v1/moves" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pokemonshowdown-api/v1/moves", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pokemonshowdown-api/v1/moves");
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/moves",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "type": "fire",
        "count": 26,
        "moves": [
            {
                "id": "blastburn",
                "pp": 5,
                "num": 307,
                "is_z": false,
                "name": "Blast Burn",
                "type": "Fire",
                "flags": [
                    "recharge",
                    "protect",
                    "mirror",
                    "metronome"
                ],
                "is_max": false,
                "target": "normal",
                "accuracy": 90,
                "category": "Special",
                "priority": 0,
                "base_power": 150,
                "description": "User cannot move next turn."
            },
            {
                "id": "eruption",
                "pp": 5,
                "num": 284,
                "is_z": false,
                "name": "Eruption",
                "type": "Fire",
                "flags": [
                    "protect",
                    "mirror",
                    "metronome"
                ],
                "is_max": false,
                "target": "allAdjacentFoes",
                "accuracy": 100,
                "category": "Special",
                "priority": 0,
                "base_power": 150,
                "description": "Less power as user's HP decreases. Hits foe(s)."
            },
            {
                "id": "mindblown",
                "pp": 5,
                "num": 720,
                "is_z": false,
                "name": "Mind Blown",
                "type": "Fire",
                "flags": [
                    "protect",
                    "mirror"
                ],
                "is_max": false,
                "target": "allAdjacent",
                "accuracy": 100,
                "category": "Special",
                "priority": 0,
                "base_power": 150,
                "description": "User loses 50% max HP. Hits adjacent Pokemon."
            },
            {
                "id": "shelltrap",
                "pp": 5,
                "num": 704,
                "is_z": false,
                "name": "Shell Trap",
                "type": "Fire",
                "flags": [
                    "protect",
                    "failmefirst",
                    "nosleeptalk",
                    "noassist",
                    "failcopycat",
                    "failinstruct"
                ],
                "is_max": false,
                "target": "allAdjacentFoes",
                "accuracy": 100,
                "category": "Special",
                "priority": -3,
                "base_power": 150,
                "description": "User must take physical damage before moving."
            },
            {
                "id": "blueflare",
                "pp": 5,
                "num": 551,
                "is_z": false,
                "name": "Blue Flare",
                "type": "Fire",
                "flags": [
     
…