/planets/26

homecaret-rightplanetscaret-right

26

API Endpoint:

Request:

fetch("https://swapi.info/api/planets/26")
    .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": "Bestine IV",
  "rotation_period": "26",
  "orbital_period": "680",
  "diameter": "6400",
  "climate": "temperate",
  "gravity": "unknown",
  "terrain": "rocky islands, oceans",
  "surface_water": "98",
  "population": "62000000",
  "residents": [
    "https://swapi.info/api/people/19"
  ],
  "films": [],
  "created": "2014-12-12T11:16:55.078000Z",
  "edited": "2014-12-20T20:58:18.463000Z",
  "url": "https://swapi.info/api/planets/26"
}
eye-open
Good