/starships/63

homecaret-rightstarshipscaret-right

63

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/63")
    .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": "Republic attack cruiser",
  "model": "Senator-class Star Destroyer",
  "manufacturer": "Kuat Drive Yards, Allanteen Six shipyards",
  "cost_in_credits": "59000000",
  "length": "1137",
  "max_atmosphering_speed": "975",
  "crew": "7400",
  "passengers": "2000",
  "cargo_capacity": "20000000",
  "consumables": "2 years",
  "hyperdrive_rating": "1.0",
  "MGLT": "unknown",
  "starship_class": "star destroyer",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-20T19:52:56.232000Z",
  "edited": "2014-12-20T21:23:49.946000Z",
  "url": "https://swapi.info/api/starships/63"
}
eye-open
Good