Skip to content

Get move meta ailment

GET
/api/v2/move-ailment/{id}/
const url = 'https://pokeapi.co/api/v2/move-ailment/example/';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}

Move Ailments are status conditions caused by moves used during battle. See Bulbapedia for greater detail.

id
required
string

This parameter can be a string or an integer.

Media typeapplication/json
object
id
required
integer
name
required
string
<= 200 characters
moves
required
Array<object>
object
name
required
string
url
required
string format: uri
names
required
Array<object>
object
name
required
string
<= 200 characters
language
required
object
name
required
string
<= 200 characters
url
required
string format: uri
Example
Terminal window
{
"moves": [
{
"name": "thunder-punch",
"url": "https://pokeapi.co/api/v2/move/9/"
}
]
}