/planets/31

homecaret-rightplanetscaret-right

31

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/31")
    .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": "Mon Cala",
  "rotation_period": "21",
  "orbital_period": "398",
  "diameter": "11030",
  "climate": "temperate",
  "gravity": "1",
  "terrain": "oceans, reefs, islands",
  "surface_water": "100",
  "population": "27000000000",
  "residents": [
    "https://swapi.info/api/people/27"
  ],
  "films": [],
  "created": "2014-12-18T11:07:01.792000Z",
  "edited": "2014-12-20T20:58:18.471000Z",
  "url": "https://swapi.info/api/planets/31"
}
eye-open
Good