Endpoint: nature

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

Request

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

Response

response.json
1[
2 {
3 "name": "hardy",
4 "url": "https://pokedex.mimo.dev/api/nature/1/",
5 "id": "1"
6 },
7 {
8 "name": "bold",
9 "url": "https://pokedex.mimo.dev/api/nature/2/",
10 "id": "2"
11 },
12 {
13 "name": "modest",
14 "url": "https://pokedex.mimo.dev/api/nature/3/",
15 "id": "3"
16 },
17 {
18 "name": "calm",
19 "url": "https://pokedex.mimo.dev/api/nature/4/",
20 "id": "4"
21 },
22 {
23 "name": "timid",
24 "url": "https://pokedex.mimo.dev/api/nature/5/",
25 "id": "5"
26 },
27 {
28 "name": "lonely",
29 "url": "https://pokedex.mimo.dev/api/nature/6/",
30 "id": "6"
31 },
32 {
33 "name": "docile",
34 "url": "https://pokedex.mimo.dev/api/nature/7/",
35 "id": "7"
36 },
37 {
38 "name": "mild",
39 "url": "https://pokedex.mimo.dev/api/nature/8/",
40 "id": "8"
41 },
42 {
43 "name": "gentle",
44 "url": "https://pokedex.mimo.dev/api/nature/9/",
45 "id": "9"
46 },
47 {
48 "name": "hasty",
49 "url": "https://pokedex.mimo.dev/api/nature/10/",
50 "id": "10"
51 },
52 {
53 "name": "adamant",
54 "url": "https://pokedex.mimo.dev/api/nature/11/",
55 "id": "11"
56 },
57 {
58 "name": "impish",
59 "url": "https://pokedex.mimo.dev/api/nature/12/",
60 "id": "12"
61 },
62 {
63 "name": "bashful",
64 "url": "https://pokedex.mimo.dev/api/nature/13/",
65 "id": "13"
66 },
67 {
68 "name": "careful",
69 "url": "https://pokedex.mimo.dev/api/nature/14/",
70 "id": "14"
71 },
72 {
73 "name": "rash",
74 "url": "https://pokedex.mimo.dev/api/nature/15/",
75 "id": "15"
76 },
77 {
78 "name": "jolly",
79 "url": "https://pokedex.mimo.dev/api/nature/16/",
80 "id": "16"
81 },
82 {
83 "name": "naughty",
84 "url": "https://pokedex.mimo.dev/api/nature/17/",
85 "id": "17"
86 },
87 {
88 "name": "lax",
89 "url": "https://pokedex.mimo.dev/api/nature/18/",
90 "id": "18"
91 },
92 {
93 "name": "quirky",
94 "url": "https://pokedex.mimo.dev/api/nature/19/",
95 "id": "19"
96 },
97 {
98 "name": "naive",
99 "url": "https://pokedex.mimo.dev/api/nature/20/",
100 "id": "20"
101 },
102 {
103 "name": "brave",
104 "url": "https://pokedex.mimo.dev/api/nature/21/",
105 "id": "21"
106 },
107 {
108 "name": "relaxed",
109 "url": "https://pokedex.mimo.dev/api/nature/22/",
110 "id": "22"
111 },
112 {
113 "name": "quiet",
114 "url": "https://pokedex.mimo.dev/api/nature/23/",
115 "id": "23"
116 },
117 {
118 "name": "sassy",
119 "url": "https://pokedex.mimo.dev/api/nature/24/",
120 "id": "24"
121 },
122 {
123 "name": "serious",
124 "url": "https://pokedex.mimo.dev/api/nature/25/",
125 "id": "25"
126 }
127]