1fetch("https://pokedex.mimo.dev/api/contest-type") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1[2 {3 "name": "cool",4 "url": "https://pokedex.mimo.dev/api/contest-type/1/",5 "id": "1"6 },7 {8 "name": "beauty",9 "url": "https://pokedex.mimo.dev/api/contest-type/2/",10 "id": "2"11 },12 {13 "name": "cute",14 "url": "https://pokedex.mimo.dev/api/contest-type/3/",15 "id": "3"16 },17 {18 "name": "smart",19 "url": "https://pokedex.mimo.dev/api/contest-type/4/",20 "id": "4"21 },22 {23 "name": "tough",24 "url": "https://pokedex.mimo.dev/api/contest-type/5/",25 "id": "5"26 }27]