Endpoint: location

GEThttps://pokedex.mimo.dev/api/location/giant-chasm

Request

GETlocation
1fetch("https://pokedex.mimo.dev/api/location/giant-chasm")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1{
2 "areas": [
3 {
4 "name": "giant-chasm-outside",
5 "url": "https://pokedex.mimo.dev/api/location-area/614/"
6 },
7 {
8 "name": "giant-chasm-area",
9 "url": "https://pokedex.mimo.dev/api/location-area/615/"
10 },
11 {
12 "name": "giant-chasm-forest",
13 "url": "https://pokedex.mimo.dev/api/location-area/616/"
14 },
15 {
16 "name": "giant-chasm-forest-cave",
17 "url": "https://pokedex.mimo.dev/api/location-area/617/"
18 }
19 ],
20 "game_indices": [
21 {
22 "game_index": 61,
23 "generation": {
24 "name": "generation-v",
25 "url": "https://pokedex.mimo.dev/api/generation/5/"
26 }
27 },
28 {
29 "game_index": 88,
30 "generation": {
31 "name": "generation-v",
32 "url": "https://pokedex.mimo.dev/api/generation/5/"
33 }
34 }
35 ],
36 "id": 403,
37 "name": "giant-chasm",
38 "names": [
39 {
40 "language": {
41 "name": "ja-Hrkt",
42 "url": "https://pokedex.mimo.dev/api/language/1/"
43 },
44 "name": "ジャイアントホール"
45 },
46 {
47 "language": {
48 "name": "fr",
49 "url": "https://pokedex.mimo.dev/api/language/5/"
50 },
51 "name": "Grotte Cyclopéenne"
52 },
53 {
54 "language": {
55 "name": "en",
56 "url": "https://pokedex.mimo.dev/api/language/9/"
57 },
58 "name": "Giant Chasm"
59 }
60 ],
61 "region": {
62 "name": "unova",
63 "url": "https://pokedex.mimo.dev/api/region/5/"
64 }
65}