/starships/58

homecaret-rightstarshipscaret-right

58

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/58")
    .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": "Solar Sailer",
  "model": "Punworcca 116-class interstellar sloop",
  "manufacturer": "Huppla Pasa Tisc Shipwrights Collective",
  "cost_in_credits": "35700",
  "length": "15.2",
  "max_atmosphering_speed": "1600",
  "crew": "3",
  "passengers": "11",
  "cargo_capacity": "240",
  "consumables": "7 days",
  "hyperdrive_rating": "1.5",
  "MGLT": "unknown",
  "starship_class": "yacht",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/5"
  ],
  "created": "2014-12-20T18:37:56.969000Z",
  "edited": "2014-12-20T21:23:49.937000Z",
  "url": "https://swapi.info/api/starships/58"
}
eye-open
Good