/planets/3

homecaret-rightplanetscaret-right

3

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/3")
    .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": "Yavin IV",
  "rotation_period": "24",
  "orbital_period": "4818",
  "diameter": "10200",
  "climate": "temperate, tropical",
  "gravity": "1 standard",
  "terrain": "jungle, rainforests",
  "surface_water": "8",
  "population": "1000",
  "residents": [],
  "films": [
    "https://swapi.info/api/films/1"
  ],
  "created": "2014-12-10T11:37:19.144000Z",
  "edited": "2014-12-20T20:58:18.421000Z",
  "url": "https://swapi.info/api/planets/3"
}
eye-open
Good