/vehicles/37
Request:
fetch("https://swapi.info/api/vehicles/37")
.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": "C-9979 landing craft",
"model": "C-9979 landing craft",
"manufacturer": "Haor Chall Engineering",
"cost_in_credits": "200000",
"length": "210",
"max_atmosphering_speed": "587",
"crew": "140",
"passengers": "284",
"cargo_capacity": "1800000",
"consumables": "1 day",
"vehicle_class": "landing craft",
"pilots": [],
"films": [
"https://swapi.info/api/films/4"
],
"created": "2014-12-19T17:20:36.373000Z",
"edited": "2014-12-20T21:30:21.707000Z",
"url": "https://swapi.info/api/vehicles/37"
}