/vehicles/7
Request:
fetch("https://swapi.info/api/vehicles/7")
.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": "X-34 landspeeder",
"model": "X-34 landspeeder",
"manufacturer": "SoroSuub Corporation",
"cost_in_credits": "10550",
"length": "3.4 ",
"max_atmosphering_speed": "250",
"crew": "1",
"passengers": "1",
"cargo_capacity": "5",
"consumables": "unknown",
"vehicle_class": "repulsorcraft",
"pilots": [],
"films": [
"https://swapi.info/api/films/1"
],
"created": "2014-12-10T16:13:52.586000Z",
"edited": "2014-12-20T21:30:21.668000Z",
"url": "https://swapi.info/api/vehicles/7"
}