/films/1

homecaret-rightfilmscaret-right

1

API Endpoint:

Request:

fetch("https://swapi.info/api/films/1")
    .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": "A New Hope",
  "episode_id": 4,
  "opening_crawl": "It is a period of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base, have won\r\ntheir first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring the battle, Rebel\r\nspies managed to steal secret\r\nplans to the Empire's\r\nultimate weapon, the DEATH\r\nSTAR, an armored space\r\nstation with enough power\r\nto destroy an entire planet.\r\n\r\nPursued by the Empire's\r\nsinister agents, Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....",
  "director": "George Lucas",
  "producer": "Gary Kurtz, Rick McCallum",
  "release_date": "1977-05-25",
  "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/8",
    "https://swapi.info/api/people/9",
    "https://swapi.info/api/people/10",
    "https://swapi.info/api/people/12",
    "https://swapi.info/api/people/13",
    "https://swapi.info/api/people/14",
    "https://swapi.info/api/people/15",
    "https://swapi.info/api/people/16",
    "https://swapi.info/api/people/18",
    "https://swapi.info/api/people/19",
    "https://swapi.info/api/people/81"
  ],
  "planets": [
    "https://swapi.info/api/planets/1",
    "https://swapi.info/api/planets/2",
    "https://swapi.info/api/planets/3"
  ],
  "starships": [
    "https://swapi.info/api/starships/2",
    "https://swapi.info/api/starships/3",
    "https://swapi.info/api/starships/5",
    "https://swapi.info/api/starships/9",
    "https://swapi.info/api/starships/10",
    "https://swapi.info/api/starships/11",
    "https://swapi.info/api/starships/12",
    "https://swapi.info/api/starships/13"
  ],
  "vehicles": [
    "https://swapi.info/api/vehicles/4",
    "https://swapi.info/api/vehicles/6",
    "https://swapi.info/api/vehicles/7",
    "https://swapi.info/api/vehicles/8"
  ],
  "species": [
    "https://swapi.info/api/species/1",
    "https://swapi.info/api/species/2",
    "https://swapi.info/api/species/3",
    "https://swapi.info/api/species/4",
    "https://swapi.info/api/species/5"
  ],
  "created": "2014-12-10T14:23:31.880000Z",
  "edited": "2014-12-20T19:49:45.256000Z",
  "url": "https://swapi.info/api/films/1"
}
eye-open
Good