/films/6

homecaret-rightfilmscaret-right

6

API Endpoint:

Request:

fetch("https://swapi.info/api/films/6")
    .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:

{
  "title": "Revenge of the Sith",
  "episode_id": 3,
  "opening_crawl": "War! The Republic is crumbling\r\nunder attacks by the ruthless\r\nSith Lord, Count Dooku.\r\nThere are heroes on both sides.\r\nEvil is everywhere.\r\n\r\nIn a stunning move, the\r\nfiendish droid leader, General\r\nGrievous, has swept into the\r\nRepublic capital and kidnapped\r\nChancellor Palpatine, leader of\r\nthe Galactic Senate.\r\n\r\nAs the Separatist Droid Army\r\nattempts to flee the besieged\r\ncapital with their valuable\r\nhostage, two Jedi Knights lead a\r\ndesperate mission to rescue the\r\ncaptive Chancellor....",
  "director": "George Lucas",
  "producer": "Rick McCallum",
  "release_date": "2005-05-19",
  "characters": [
    "https://swapi.info/api/people/1",
    "https://swapi.info/api/people/2",
    "https://swapi.info/api/people/3",
    "https://swapi.info/api/people/4",
    "https://swapi.info/api/people/5",
    "https://swapi.info/api/people/6",
    "https://swapi.info/api/people/7",
    "https://swapi.info/api/people/10",
    "https://swapi.info/api/people/11",
    "https://swapi.info/api/people/12",
    "https://swapi.info/api/people/13",
    "https://swapi.info/api/people/20",
    "https://swapi.info/api/people/21",
    "https://swapi.info/api/people/33",
    "https://swapi.info/api/people/35",
    "https://swapi.info/api/people/46",
    "https://swapi.info/api/people/51",
    "https://swapi.info/api/people/52",
    "https://swapi.info/api/people/53",
    "https://swapi.info/api/people/54",
    "https://swapi.info/api/people/55",
    "https://swapi.info/api/people/56",
    "https://swapi.info/api/people/58",
    "https://swapi.info/api/people/63",
    "https://swapi.info/api/people/64",
    "https://swapi.info/api/people/67",
    "https://swapi.info/api/people/68",
    "https://swapi.info/api/people/75",
    "https://swapi.info/api/people/78",
    "https://swapi.info/api/people/79",
    "https://swapi.info/api/people/80",
    "https://swapi.info/api/people/81",
    "https://swapi.info/api/people/82",
    "https://swapi.info/api/people/83"
  ],
  "planets": [
    "https://swapi.info/api/planets/1",
    "https://swapi.info/api/planets/2",
    "https://swapi.info/api/planets/5",
    "https://swapi.info/api/planets/8",
    "https://swapi.info/api/planets/9",
    "https://swapi.info/api/planets/12",
    "https://swapi.info/api/planets/13",
    "https://swapi.info/api/planets/14",
    "https://swapi.info/api/planets/15",
    "https://swapi.info/api/planets/16",
    "https://swapi.info/api/planets/17",
    "https://swapi.info/api/planets/18",
    "https://swapi.info/api/planets/19"
  ],
  "starships": [
    "https://swapi.info/api/starships/2",
    "https://swapi.info/api/starships/32",
    "https://swapi.info/api/starships/48",
    "https://swapi.info/api/starships/59",
    "https://swapi.info/api/starships/61",
    "https://swapi.info/api/starships/63",
    "https://swapi.info/api/starships/64",
    "https://swapi.info/api/starships/65",
    "https://swapi.info/api/starships/66",
    "https://swapi.info/api/starships/68",
    "https://swapi.info/api/starships/74",
    "https://swapi.info/api/starships/75"
  ],
  "vehicles": [
    "https://swapi.info/api/vehicles/33",
    "https://swapi.info/api/vehicles/50",
    "https://swapi.info/api/vehicles/53",
    "https://swapi.info/api/vehicles/56",
    "https://swapi.info/api/vehicles/60",
    "https://swapi.info/api/vehicles/62",
    "https://swapi.info/api/vehicles/67",
    "https://swapi.info/api/vehicles/69",
    "https://swapi.info/api/vehicles/70",
    "https://swapi.info/api/vehicles/71",
    "https://swapi.info/api/vehicles/72",
    "https://swapi.info/api/vehicles/73",
    "https://swapi.info/api/vehicles/76"
  ],
  "species": [
    "https://swapi.info/api/species/1",
    "https://swapi.info/api/species/2",
    "https://swapi.info/api/species/3",
    "https://swapi.info/api/species/6",
    "https://swapi.info/api/species/15",
    "https://swapi.info/api/species/19",
    "https://swapi.info/api/species/20",
    "https://swapi.info/api/species/23",
    "https://swapi.info/api/species/24",
    "https://swapi.info/api/species/25",
    "https://swapi.info/api/species/26",
    "https://swapi.info/api/species/27",
    "https://swapi.info/api/species/28",
    "https://swapi.info/api/species/29",
    "https://swapi.info/api/species/30",
    "https://swapi.info/api/species/33",
    "https://swapi.info/api/species/34",
    "https://swapi.info/api/species/35",
    "https://swapi.info/api/species/36",
    "https://swapi.info/api/species/37"
  ],
  "created": "2014-12-20T18:49:38.403000Z",
  "edited": "2014-12-20T20:47:52.073000Z",
  "url": "https://swapi.info/api/films/6"
}
eye-open
Good