/planets/19
Request:
fetch("https://swapi.info/api/planets/19")
.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": "Saleucami",
"rotation_period": "26",
"orbital_period": "392",
"diameter": "14920",
"climate": "hot",
"gravity": "unknown",
"terrain": "caves, desert, mountains, volcanoes",
"surface_water": "unknown",
"population": "1400000000",
"residents": [],
"films": [
"https://swapi.info/api/films/6"
],
"created": "2014-12-10T13:47:46.874000Z",
"edited": "2014-12-20T20:58:18.450000Z",
"url": "https://swapi.info/api/planets/19"
}