/planets/27

homecaret-rightplanetscaret-right

27

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/27")
    .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": "Ord Mantell",
  "rotation_period": "26",
  "orbital_period": "334",
  "diameter": "14050",
  "climate": "temperate",
  "gravity": "1 standard",
  "terrain": "plains, seas, mesas",
  "surface_water": "10",
  "population": "4000000000",
  "residents": [],
  "films": [
    "https://swapi.info/api/films/2"
  ],
  "created": "2014-12-15T12:23:41.661000Z",
  "edited": "2014-12-20T20:58:18.464000Z",
  "url": "https://swapi.info/api/planets/27"
}
eye-open
Good