/planets/17

homecaret-rightplanetscaret-right

17

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/17")
    .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": "Felucia",
  "rotation_period": "34",
  "orbital_period": "231",
  "diameter": "9100",
  "climate": "hot, humid",
  "gravity": "0.75 standard",
  "terrain": "fungus forests",
  "surface_water": "unknown",
  "population": "8500000",
  "residents": [],
  "films": [
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-10T13:44:50.397000Z",
  "edited": "2014-12-20T20:58:18.447000Z",
  "url": "https://swapi.info/api/planets/17"
}
eye-open
Good