/starships/28

homecaret-rightstarshipscaret-right

28

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/28")
    .then((res) => res.json()) // Parse the JSON content from the API to be consumed
    .then((json) => console.log(json)) // Log the JSON response to your console
    .catch((error) => console.error(error)) // Log the API error (if any) to your console

Result:

{
  "name": "A-wing",
  "model": "RZ-1 A-wing Interceptor",
  "manufacturer": "Alliance Underground Engineering, Incom Corporation",
  "cost_in_credits": "175000",
  "length": "9.6",
  "max_atmosphering_speed": "1300",
  "crew": "1",
  "passengers": "0",
  "cargo_capacity": "40",
  "consumables": "1 week",
  "hyperdrive_rating": "1.0",
  "MGLT": "120",
  "starship_class": "Starfighter",
  "pilots": [
    "https://swapi.info/api/people/29"
  ],
  "films": [
    "https://swapi.info/api/films/3"
  ],
  "created": "2014-12-18T11:16:34.542000Z",
  "edited": "2014-12-20T21:23:49.907000Z",
  "url": "https://swapi.info/api/starships/28"
}
eye-open
Good