/starships/39

homecaret-rightstarshipscaret-right

39

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/39")
    .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": "Naboo fighter",
  "model": "N-1 starfighter",
  "manufacturer": "Theed Palace Space Vessel Engineering Corps",
  "cost_in_credits": "200000",
  "length": "11",
  "max_atmosphering_speed": "1100",
  "crew": "1",
  "passengers": "0",
  "cargo_capacity": "65",
  "consumables": "7 days",
  "hyperdrive_rating": "1.0",
  "MGLT": "unknown",
  "starship_class": "Starfighter",
  "pilots": [
    "https://swapi.info/api/people/11",
    "https://swapi.info/api/people/35",
    "https://swapi.info/api/people/60"
  ],
  "films": [
    "https://swapi.info/api/films/4",
    "https://swapi.info/api/films/5"
  ],
  "created": "2014-12-19T17:39:17.582000Z",
  "edited": "2014-12-20T21:23:49.917000Z",
  "url": "https://swapi.info/api/starships/39"
}
eye-open
Good