/vehicles/54

homecaret-rightvehiclescaret-right

54

API Endpoint:

Request:

fetch("https://swapi.info/api/vehicles/54")
    .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": "SPHA",
  "model": "Self-Propelled Heavy Artillery",
  "manufacturer": "Rothana Heavy Engineering",
  "cost_in_credits": "unknown",
  "length": "140",
  "max_atmosphering_speed": "35",
  "crew": "25",
  "passengers": "30",
  "cargo_capacity": "500",
  "consumables": "7 days",
  "vehicle_class": "walker",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/5"
  ],
  "created": "2014-12-20T18:12:32.315000Z",
  "edited": "2014-12-20T21:30:21.731000Z",
  "url": "https://swapi.info/api/vehicles/54"
}
eye-open
Good