/vehicles/71

homecaret-rightvehiclescaret-right

71

API Endpoint:

Request:

fetch("https://swapi.info/api/vehicles/71")
    .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": "Clone turbo tank",
  "model": "HAVw A6 Juggernaut",
  "manufacturer": "Kuat Drive Yards",
  "cost_in_credits": "350000",
  "length": "49.4",
  "max_atmosphering_speed": "160",
  "crew": "20",
  "passengers": "300",
  "cargo_capacity": "30000",
  "consumables": "20 days",
  "vehicle_class": "wheeled walker",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-20T20:24:45.587000Z",
  "edited": "2014-12-20T21:30:21.762000Z",
  "url": "https://swapi.info/api/vehicles/71"
}
eye-open
Good