/starships/49

homecaret-rightstarshipscaret-right

49

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/49")
    .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": "H-type Nubian yacht",
  "model": "H-type Nubian yacht",
  "manufacturer": "Theed Palace Space Vessel Engineering Corps",
  "cost_in_credits": "unknown",
  "length": "47.9",
  "max_atmosphering_speed": "8000",
  "crew": "4",
  "passengers": "unknown",
  "cargo_capacity": "unknown",
  "consumables": "unknown",
  "hyperdrive_rating": "0.9",
  "MGLT": "unknown",
  "starship_class": "yacht",
  "pilots": [
    "https://swapi.info/api/people/35"
  ],
  "films": [
    "https://swapi.info/api/films/5"
  ],
  "created": "2014-12-20T17:46:46.847000Z",
  "edited": "2014-12-20T21:23:49.932000Z",
  "url": "https://swapi.info/api/starships/49"
}
eye-open
Good