/people/68

homecaret-rightpeoplecaret-right

68

API Endpoint:

Request:

fetch("https://swapi.info/api/people/68")
    .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": "Bail Prestor Organa",
  "height": "191",
  "mass": "unknown",
  "hair_color": "black",
  "skin_color": "tan",
  "eye_color": "brown",
  "birth_year": "67BBY",
  "gender": "male",
  "homeworld": "https://swapi.info/api/planets/2",
  "films": [
    "https://swapi.info/api/films/5",
    "https://swapi.info/api/films/6"
  ],
  "species": [
    "https://swapi.info/api/species/1"
  ],
  "vehicles": [],
  "starships": [],
  "created": "2014-12-20T16:53:08.575000Z",
  "edited": "2014-12-20T21:17:50.463000Z",
  "url": "https://swapi.info/api/people/68"
}
eye-open
Good