/starships/52

homecaret-rightstarshipscaret-right

52

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/52")
    .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": "Republic Assault ship",
  "model": "Acclamator I-class assault ship",
  "manufacturer": "Rothana Heavy Engineering",
  "cost_in_credits": "unknown",
  "length": "752",
  "max_atmosphering_speed": "unknown",
  "crew": "700",
  "passengers": "16000",
  "cargo_capacity": "11250000",
  "consumables": "2 years",
  "hyperdrive_rating": "0.6",
  "MGLT": "unknown",
  "starship_class": "assault ship",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/5"
  ],
  "created": "2014-12-20T18:08:42.926000Z",
  "edited": "2014-12-20T21:23:49.935000Z",
  "url": "https://swapi.info/api/starships/52"
}
eye-open
Good