/starships/66

homecaret-rightstarshipscaret-right

66

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/66")
    .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": "arc-170",
  "model": "Aggressive Reconnaissance-170 starfighte",
  "manufacturer": "Incom Corporation, Subpro Corporation",
  "cost_in_credits": "155000",
  "length": "14.5",
  "max_atmosphering_speed": "1000",
  "crew": "3",
  "passengers": "0",
  "cargo_capacity": "110",
  "consumables": "5 days",
  "hyperdrive_rating": "1.0",
  "MGLT": "100",
  "starship_class": "starfighter",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-20T20:03:48.603000Z",
  "edited": "2014-12-20T21:23:49.953000Z",
  "url": "https://swapi.info/api/starships/66"
}
eye-open
Good