Endpoint: starships

GEThttps://swapi.mimo.dev/api/starships/B-wing

Request

GETstarships
1fetch("https://swapi.mimo.dev/api/starships/B-wing")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1{
2 "name": "B-wing",
3 "model": "A/SF-01 B-wing starfighter",
4 "manufacturer": "Slayn & Korpil",
5 "cost_in_credits": "220000",
6 "length": "16.9",
7 "max_atmosphering_speed": "950",
8 "crew": "1",
9 "passengers": "0",
10 "cargo_capacity": "45",
11 "consumables": "1 week",
12 "hyperdrive_rating": "2.0",
13 "MGLT": "91",
14 "starship_class": "Assault Starfighter",
15 "pilots": [],
16 "films": [
17 "https://swapi.mimo.dev/api/films/3/"
18 ],
19 "created": "2014-12-18T11:18:04.763000Z",
20 "edited": "2014-12-20T21:23:49.909000Z",
21 "url": "https://swapi.mimo.dev/api/starships/29/"
22}