Endpoint: type

GEThttps://pokedex.mimo.dev/api/type

Request

GETtype
1fetch("https://pokedex.mimo.dev/api/type")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1[
2 {
3 "name": "normal",
4 "url": "https://pokedex.mimo.dev/api/type/1/",
5 "id": "1"
6 },
7 {
8 "name": "fighting",
9 "url": "https://pokedex.mimo.dev/api/type/2/",
10 "id": "2"
11 },
12 {
13 "name": "flying",
14 "url": "https://pokedex.mimo.dev/api/type/3/",
15 "id": "3"
16 },
17 {
18 "name": "poison",
19 "url": "https://pokedex.mimo.dev/api/type/4/",
20 "id": "4"
21 },
22 {
23 "name": "ground",
24 "url": "https://pokedex.mimo.dev/api/type/5/",
25 "id": "5"
26 },
27 {
28 "name": "rock",
29 "url": "https://pokedex.mimo.dev/api/type/6/",
30 "id": "6"
31 },
32 {
33 "name": "bug",
34 "url": "https://pokedex.mimo.dev/api/type/7/",
35 "id": "7"
36 },
37 {
38 "name": "ghost",
39 "url": "https://pokedex.mimo.dev/api/type/8/",
40 "id": "8"
41 },
42 {
43 "name": "steel",
44 "url": "https://pokedex.mimo.dev/api/type/9/",
45 "id": "9"
46 },
47 {
48 "name": "fire",
49 "url": "https://pokedex.mimo.dev/api/type/10/",
50 "id": "10"
51 },
52 {
53 "name": "water",
54 "url": "https://pokedex.mimo.dev/api/type/11/",
55 "id": "11"
56 },
57 {
58 "name": "grass",
59 "url": "https://pokedex.mimo.dev/api/type/12/",
60 "id": "12"
61 },
62 {
63 "name": "electric",
64 "url": "https://pokedex.mimo.dev/api/type/13/",
65 "id": "13"
66 },
67 {
68 "name": "psychic",
69 "url": "https://pokedex.mimo.dev/api/type/14/",
70 "id": "14"
71 },
72 {
73 "name": "ice",
74 "url": "https://pokedex.mimo.dev/api/type/15/",
75 "id": "15"
76 },
77 {
78 "name": "dragon",
79 "url": "https://pokedex.mimo.dev/api/type/16/",
80 "id": "16"
81 },
82 {
83 "name": "dark",
84 "url": "https://pokedex.mimo.dev/api/type/17/",
85 "id": "17"
86 },
87 {
88 "name": "fairy",
89 "url": "https://pokedex.mimo.dev/api/type/18/",
90 "id": "18"
91 },
92 {
93 "name": "stellar",
94 "url": "https://pokedex.mimo.dev/api/type/19/",
95 "id": "19"
96 },
97 {
98 "name": "unknown",
99 "url": "https://pokedex.mimo.dev/api/type/10001/",
100 "id": "10001"
101 },
102 {
103 "name": "shadow",
104 "url": "https://pokedex.mimo.dev/api/type/10002/",
105 "id": "10002"
106 }
107]