Endpoint: species

GEThttps://swapi.mimo.dev/api/species/Hutt

Request

GETspecies
1fetch("https://swapi.mimo.dev/api/species/Hutt")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1{
2 "name": "Hutt",
3 "classification": "gastropod",
4 "designation": "sentient",
5 "average_height": "300",
6 "skin_colors": "green, brown, tan",
7 "hair_colors": "n/a",
8 "eye_colors": "yellow, red",
9 "average_lifespan": "1000",
10 "homeworld": "https://swapi.mimo.dev/api/planets/24/",
11 "language": "Huttese",
12 "people": [
13 "https://swapi.mimo.dev/api/people/16/"
14 ],
15 "films": [
16 "https://swapi.mimo.dev/api/films/1/",
17 "https://swapi.mimo.dev/api/films/3/"
18 ],
19 "created": "2014-12-10T17:12:50.410000Z",
20 "edited": "2014-12-20T21:36:42.146000Z",
21 "url": "https://swapi.mimo.dev/api/species/5/"
22}