Skip to content

Get pokemon color

GET
/api/v2/pokemon-color/{id}/
const url = 'https://pokeapi.co/api/v2/pokemon-color/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);
}

Colors used for sorting Pokémon in a Pokédex. The color listed in the Pokédex is usually the color most apparent or covering each Pokémon’s body. No orange category exists; Pokémon that are primarily orange are listed as red or brown.

id
required
string

This parameter can be a string or an integer.

Media typeapplication/json
object
id
required
integer
name
required
string
<= 200 characters
names
required
Array<object>
object
name
required
string
<= 200 characters
language
required
object
name
required
string
<= 200 characters
url
required
string format: uri
pokemon_species
required
Array<object>
object
name
required
string
<= 200 characters
url
required
string format: uri
Examplegenerated
Terminal window
{
"name": "example"
}