/starships/17

homecaret-rightstarshipscaret-right

17

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/17")
    .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": "Rebel transport",
  "model": "GR-75 medium transport",
  "manufacturer": "Gallofree Yards, Inc.",
  "cost_in_credits": "unknown",
  "length": "90",
  "max_atmosphering_speed": "650",
  "crew": "6",
  "passengers": "90",
  "cargo_capacity": "19000000",
  "consumables": "6 months",
  "hyperdrive_rating": "4.0",
  "MGLT": "20",
  "starship_class": "Medium transport",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/2",
    "https://swapi.info/api/films/3"
  ],
  "created": "2014-12-15T12:34:52.264000Z",
  "edited": "2014-12-20T21:23:49.895000Z",
  "url": "https://swapi.info/api/starships/17"
}
eye-open
Good