/planets/42

homecaret-rightplanetscaret-right

42

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/42")
    .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": "Haruun Kal",
  "rotation_period": "25",
  "orbital_period": "383",
  "diameter": "10120",
  "climate": "temperate",
  "gravity": "0.98",
  "terrain": "toxic cloudsea, plateaus, volcanoes",
  "surface_water": "unknown",
  "population": "705300",
  "residents": [
    "https://swapi.info/api/people/51"
  ],
  "films": [],
  "created": "2014-12-20T10:12:28.980000Z",
  "edited": "2014-12-20T20:58:18.491000Z",
  "url": "https://swapi.info/api/planets/42"
}
eye-open
Good