/starships/41

homecaret-rightstarshipscaret-right

41

API Endpoint:

Request:

fetch("https://swapi.info/api/starships/41")
    .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": "Scimitar",
  "model": "Star Courier",
  "manufacturer": "Republic Sienar Systems",
  "cost_in_credits": "55000000",
  "length": "26.5",
  "max_atmosphering_speed": "1180",
  "crew": "1",
  "passengers": "6",
  "cargo_capacity": "2500000",
  "consumables": "30 days",
  "hyperdrive_rating": "1.5",
  "MGLT": "unknown",
  "starship_class": "Space Transport",
  "pilots": [
    "https://swapi.info/api/people/44"
  ],
  "films": [
    "https://swapi.info/api/films/4"
  ],
  "created": "2014-12-20T09:39:56.116000Z",
  "edited": "2014-12-20T21:23:49.922000Z",
  "url": "https://swapi.info/api/starships/41"
}
eye-open
Good