Endpoint: version-group

GEThttps://pokedex.mimo.dev/api/version-group/the-crown-tundra

Request

GETversion-group
1fetch("https://pokedex.mimo.dev/api/version-group/the-crown-tundra")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1{
2 "generation": {
3 "name": "generation-viii",
4 "url": "https://pokedex.mimo.dev/api/generation/8/"
5 },
6 "id": 22,
7 "move_learn_methods": [],
8 "name": "the-crown-tundra",
9 "order": 22,
10 "pokedexes": [
11 {
12 "name": "crown-tundra",
13 "url": "https://pokedex.mimo.dev/api/pokedex/29/"
14 }
15 ],
16 "regions": [
17 {
18 "name": "galar",
19 "url": "https://pokedex.mimo.dev/api/region/8/"
20 }
21 ],
22 "versions": [
23 {
24 "name": "the-crown-tundra",
25 "url": "https://pokedex.mimo.dev/api/version/36/"
26 }
27 ]
28}