/starships/10

homecaret-rightstarshipscaret-right

10

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/10")
    .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": "Millennium Falcon",
  "model": "YT-1300 light freighter",
  "manufacturer": "Corellian Engineering Corporation",
  "cost_in_credits": "100000",
  "length": "34.37",
  "max_atmosphering_speed": "1050",
  "crew": "4",
  "passengers": "6",
  "cargo_capacity": "100000",
  "consumables": "2 months",
  "hyperdrive_rating": "0.5",
  "MGLT": "75",
  "starship_class": "Light freighter",
  "pilots": [
    "https://swapi.info/api/people/13",
    "https://swapi.info/api/people/14",
    "https://swapi.info/api/people/25",
    "https://swapi.info/api/people/31"
  ],
  "films": [
    "https://swapi.info/api/films/1",
    "https://swapi.info/api/films/2",
    "https://swapi.info/api/films/3"
  ],
  "created": "2014-12-10T16:59:45.094000Z",
  "edited": "2014-12-20T21:23:49.880000Z",
  "url": "https://swapi.info/api/starships/10"
}
eye-open
Good