Endpoint: move-category

GEThttps://pokedex.mimo.dev/api/move-category/force-switch

Request

GETmove-category
1fetch("https://pokedex.mimo.dev/api/move-category/force-switch")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1{
2 "descriptions": [
3 {
4 "description": "Forces target to switch out",
5 "language": {
6 "name": "en",
7 "url": "https://pokedex.mimo.dev/api/language/9/"
8 }
9 }
10 ],
11 "id": 12,
12 "moves": [
13 {
14 "name": "whirlwind",
15 "url": "https://pokedex.mimo.dev/api/move/18/"
16 },
17 {
18 "name": "roar",
19 "url": "https://pokedex.mimo.dev/api/move/46/"
20 }
21 ],
22 "name": "force-switch"
23}