Skip to content

Get region

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

A region is an organized area of the Pokémon world. Most often, the main difference between regions is the species of Pokémon that can be encountered within them.

id
required
string

This parameter can be a string or an integer.

Media typeapplication/json
object
id
required
integer
name
required
string
<= 200 characters
locations
required
Array<object>
object
name
required
string
<= 200 characters
url
required
string format: uri
main_generation
required
One of:
object
name
required
string
<= 200 characters
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
pokedexes
required
Array<object>
object
name
required
string
<= 200 characters
url
required
string format: uri
version_groups
required
Array<object>
object
name
required
string
url
required
string format: uri
Example
Terminal window
{
"version_groups": [
{
"name": "red-blue",
"url": "https://pokeapi.co/api/v2/version-group/1/"
}
]
}