Endpoint: starships

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

Request

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

Response

response.json
1{
2 "name": "A-wing",
3 "model": "RZ-1 A-wing Interceptor",
4 "manufacturer": "Alliance Underground Engineering, Incom Corporation",
5 "cost_in_credits": "175000",
6 "length": "9.6",
7 "max_atmosphering_speed": "1300",
8 "crew": "1",
9 "passengers": "0",
10 "cargo_capacity": "40",
11 "consumables": "1 week",
12 "hyperdrive_rating": "1.0",
13 "MGLT": "120",
14 "starship_class": "Starfighter",
15 "pilots": [
16 "https://swapi.mimo.dev/api/people/29/"
17 ],
18 "films": [
19 "https://swapi.mimo.dev/api/films/3/"
20 ],
21 "created": "2014-12-18T11:16:34.542000Z",
22 "edited": "2014-12-20T21:23:49.907000Z",
23 "url": "https://swapi.mimo.dev/api/starships/28/"
24}