/planets/44
Request:
fetch("https://swapi.info/api/planets/44")
.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": "Glee Anselm",
"rotation_period": "33",
"orbital_period": "206",
"diameter": "15600",
"climate": "tropical, temperate",
"gravity": "1",
"terrain": "lakes, islands, swamps, seas",
"surface_water": "80",
"population": "500000000",
"residents": [
"https://swapi.info/api/people/53"
],
"films": [],
"created": "2014-12-20T10:18:26.110000Z",
"edited": "2014-12-20T20:58:18.495000Z",
"url": "https://swapi.info/api/planets/44"
}