Endpoint: starships
GEThttps://swapi.mimo.dev/api/starships/V-wing
Request
GETstarships
1fetch("https://swapi.mimo.dev/api/starships/V-wing")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))
Response
response.json
1{
2 "name": "V-wing",
3 "model": "Alpha-3 Nimbus-class V-wing starfighter",
4 "manufacturer": "Kuat Systems Engineering",
5 "cost_in_credits": "102500",
6 "length": "7.9",
7 "max_atmosphering_speed": "1050",
8 "crew": "1",
9 "passengers": "0",
10 "cargo_capacity": "60",
11 "consumables": "15 hours",
12 "hyperdrive_rating": "1.0",
13 "MGLT": "unknown",
14 "starship_class": "starfighter",
15 "pilots": [],
16 "films": [
17 "https://swapi.mimo.dev/api/films/6/"
18 ],
19 "created": "2014-12-20T20:43:04.349000Z",
20 "edited": "2014-12-20T21:23:49.961000Z",
21 "url": "https://swapi.mimo.dev/api/starships/75/"
22}