Pokemon move endpoint
GET /pokemon/moves
Query Requirements:
Query Parameter |
---|
move |
Example Response:
URL
https://api.some-random-api.com/pokemon/moves?move=...
If the move isn't found it will try and search for moves that may match what you were looking for.
Response
// 200 OK
{
"id": 2,
"name": "karate-chop",
"generation": 1,
"effects": "Inflicts regular damage...",
"type": "fighting",
"category": "physical",
"contest": "tough",
"pp": 25,
"power": 50,
"accuracy": 100,
"priority": 0,
"pokemon": [
"mankey",
...
],
"descriptions": [
{
"description": "Has a high criti\ncal hit ratio.",
"version": "gold-silver"
},
...
]
}
// 404 Not Found
{
"error": "Move not found",
"dym": [ // Did you mean
{
"move": "karate-chop",
"certainty": "0.46"
},
{
"move": "barrage",
"certainty": "0.44"
}
]
}