/vehicles/24

homecaret-rightvehiclescaret-right

24

API Endpoint:

Request:

fetch("https://swapi.info/api/vehicles/24")
    .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": "Sail barge",
  "model": "Modified Luxury Sail Barge",
  "manufacturer": "Ubrikkian Industries Custom Vehicle Division",
  "cost_in_credits": "285000",
  "length": "30",
  "max_atmosphering_speed": "100",
  "crew": "26",
  "passengers": "500",
  "cargo_capacity": "2000000",
  "consumables": "Live food tanks",
  "vehicle_class": "sail barge",
  "pilots": [],
  "films": [
    "https://swapi.info/api/films/3"
  ],
  "created": "2014-12-18T10:44:14.217000Z",
  "edited": "2014-12-20T21:30:21.684000Z",
  "url": "https://swapi.info/api/vehicles/24"
}
eye-open
Good