/starships/21

homecaret-rightstarshipscaret-right

21

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/21")
    .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": "Slave 1",
  "model": "Firespray-31-class patrol and attack",
  "manufacturer": "Kuat Systems Engineering",
  "cost_in_credits": "unknown",
  "length": "21.5",
  "max_atmosphering_speed": "1000",
  "crew": "1",
  "passengers": "6",
  "cargo_capacity": "70000",
  "consumables": "1 month",
  "hyperdrive_rating": "3.0",
  "MGLT": "70",
  "starship_class": "Patrol craft",
  "pilots": [
    "https://swapi.info/api/people/22"
  ],
  "films": [
    "https://swapi.info/api/films/2",
    "https://swapi.info/api/films/5"
  ],
  "created": "2014-12-15T13:00:56.332000Z",
  "edited": "2014-12-20T21:23:49.897000Z",
  "url": "https://swapi.info/api/starships/21"
}
eye-open
Good