/planets/24

homecaret-rightplanetscaret-right

24

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/24")
    .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": "Nal Hutta",
  "rotation_period": "87",
  "orbital_period": "413",
  "diameter": "12150",
  "climate": "temperate",
  "gravity": "1 standard",
  "terrain": "urban, oceans, swamps, bogs",
  "surface_water": "unknown",
  "population": "7000000000",
  "residents": [
    "https://swapi.info/api/people/16"
  ],
  "films": [],
  "created": "2014-12-10T17:11:29.452000Z",
  "edited": "2014-12-20T20:58:18.460000Z",
  "url": "https://swapi.info/api/planets/24"
}
eye-open
Good