Endpoint: growth-rate

GEThttps://pokedex.mimo.dev/api/growth-rate

Request

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

Response

response.json
1[
2 {
3 "name": "slow",
4 "url": "https://pokedex.mimo.dev/api/growth-rate/1/",
5 "id": "1"
6 },
7 {
8 "name": "medium",
9 "url": "https://pokedex.mimo.dev/api/growth-rate/2/",
10 "id": "2"
11 },
12 {
13 "name": "fast",
14 "url": "https://pokedex.mimo.dev/api/growth-rate/3/",
15 "id": "3"
16 },
17 {
18 "name": "medium-slow",
19 "url": "https://pokedex.mimo.dev/api/growth-rate/4/",
20 "id": "4"
21 },
22 {
23 "name": "slow-then-very-fast",
24 "url": "https://pokedex.mimo.dev/api/growth-rate/5/",
25 "id": "5"
26 },
27 {
28 "name": "fast-then-very-slow",
29 "url": "https://pokedex.mimo.dev/api/growth-rate/6/",
30 "id": "6"
31 }
32]