/starships/2

homecaret-rightstarshipscaret-right

2

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/2")
    .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": "CR90 corvette",
  "model": "CR90 corvette",
  "manufacturer": "Corellian Engineering Corporation",
  "cost_in_credits": "3500000",
  "length": "150",
  "max_atmosphering_speed": "950",
  "crew": "30-165",
  "passengers": "600",
  "cargo_capacity": "3000000",
  "consumables": "1 year",
  "hyperdrive_rating": "2.0",
  "MGLT": "60",
  "starship_class": "corvette",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/1",
    "https://swapi.info/api/films/3",
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-10T14:20:33.369000Z",
  "edited": "2014-12-20T21:23:49.867000Z",
  "url": "https://swapi.info/api/starships/2"
}
eye-open
Good