Moves
Get a move
Returns a move with its type, damage class (physical/special/status), base power, accuracy, PP, effect description, and per-version history.
GET
/move/{name}get-moveServer
https://pokeapi.co/api/v2Production (no auth required)
Path Parameters
The move's lowercase hyphenated name (e.g. `thunderbolt`, `close-combat`) or its numeric ID.
Responses
200The full move resource.application/json
Move ID.
Lowercase hyphenated name.
Accuracy percentage (1–100). Null for moves that never miss.
Percent chance that the secondary effect fires.
Base power points.
Turn order modifier. Positive = goes first, negative = goes last.
Base power. Null for status moves.
404Move not found.application/json
curl https://pokeapi.co/api/v2/move/thunderboltfetch('https://pokeapi.co/api/v2/move/thunderbolt')requests.get(
"https://pokeapi.co/api/v2/move/thunderbolt"
)fetch('https://pokeapi.co/api/v2/move/thunderbolt'){
"id": 0,
"name": "<string>",
"accuracy": 0,
"effect_chance": 0,
"pp": 0,
"priority": 0,
"power": 0,
"type": {
"name": "<string>",
"url": "https://example.com"
},
"damage_class": {
"name": "<string>",
"url": "https://example.com"
},
"effect_entries": [
{
"effect": "<string>",
"short_effect": "<string>",
"language": {
"name": "<string>",
"url": "https://example.com"
}
}
]
}"Not Found"