/starships/23

homecaret-rightstarshipscaret-right

23

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/23")
    .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": "EF76 Nebulon-B escort frigate",
  "model": "EF76 Nebulon-B escort frigate",
  "manufacturer": "Kuat Drive Yards",
  "cost_in_credits": "8500000",
  "length": "300",
  "max_atmosphering_speed": "800",
  "crew": "854",
  "passengers": "75",
  "cargo_capacity": "6000000",
  "consumables": "2 years",
  "hyperdrive_rating": "2.0",
  "MGLT": "40",
  "starship_class": "Escort ship",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/2",
    "https://swapi.info/api/films/3"
  ],
  "created": "2014-12-15T13:06:30.813000Z",
  "edited": "2014-12-20T21:23:49.902000Z",
  "url": "https://swapi.info/api/starships/23"
}
eye-open
Good