/planets/20
Request:
fetch("https://swapi.info/api/planets/20")
.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": "Stewjon",
"rotation_period": "unknown",
"orbital_period": "unknown",
"diameter": "0",
"climate": "temperate",
"gravity": "1 standard",
"terrain": "grass",
"surface_water": "unknown",
"population": "unknown",
"residents": [
"https://swapi.info/api/people/10"
],
"films": [],
"created": "2014-12-10T16:16:26.566000Z",
"edited": "2014-12-20T20:58:18.452000Z",
"url": "https://swapi.info/api/planets/20"
}