/v1/moves
Moves filtered by type & category
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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": [
…