/planets/15

homecaret-rightplanetscaret-right

15

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/15")
    .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": "Polis Massa",
  "rotation_period": "24",
  "orbital_period": "590",
  "diameter": "0",
  "climate": "artificial temperate ",
  "gravity": "0.56 standard",
  "terrain": "airless asteroid",
  "surface_water": "0",
  "population": "1000000",
  "residents": [],
  "films": [
    "https://swapi.info/api/films/6"
  ],
  "created": "2014-12-10T13:33:46.405000Z",
  "edited": "2014-12-20T20:58:18.444000Z",
  "url": "https://swapi.info/api/planets/15"
}
eye-open
Good