/starships/68

homecaret-rightstarshipscaret-right

68

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/68")
    .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": "Banking clan frigte",
  "model": "Munificent-class star frigate",
  "manufacturer": "Hoersch-Kessel Drive, Inc, Gwori Revolutionary Industries",
  "cost_in_credits": "57000000",
  "length": "825",
  "max_atmosphering_speed": "unknown",
  "crew": "200",
  "passengers": "unknown",
  "cargo_capacity": "40000000",
  "consumables": "2 years",
  "hyperdrive_rating": "1.0",
  "MGLT": "unknown",
  "starship_class": "cruiser",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-20T20:07:11.538000Z",
  "edited": "2014-12-20T21:23:49.956000Z",
  "url": "https://swapi.info/api/starships/68"
}
eye-open
Good