/planets/7

homecaret-rightplanetscaret-right

7

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/7")
    .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": "Endor",
  "rotation_period": "18",
  "orbital_period": "402",
  "diameter": "4900",
  "climate": "temperate",
  "gravity": "0.85 standard",
  "terrain": "forests, mountains, lakes",
  "surface_water": "8",
  "population": "30000000",
  "residents": [
    "https://swapi.info/api/people/30"
  ],
  "films": [
    "https://swapi.info/api/films/3"
  ],
  "created": "2014-12-10T11:50:29.349000Z",
  "edited": "2014-12-20T20:58:18.429000Z",
  "url": "https://swapi.info/api/planets/7"
}
eye-open
Good