Endpoint: species

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

Request

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

Response

response.json
1{
2 "name": "Nautolan",
3 "classification": "amphibian",
4 "designation": "sentient",
5 "average_height": "180",
6 "skin_colors": "green, blue, brown, red",
7 "hair_colors": "none",
8 "eye_colors": "black",
9 "average_lifespan": "70",
10 "homeworld": "https://swapi.mimo.dev/api/planets/44/",
11 "language": "Nautila",
12 "people": [
13 "https://swapi.mimo.dev/api/people/53/"
14 ],
15 "films": [
16 "https://swapi.mimo.dev/api/films/4/"
17 ],
18 "created": "2014-12-20T10:18:58.610000Z",
19 "edited": "2014-12-20T21:36:42.181000Z",
20 "url": "https://swapi.mimo.dev/api/species/21/"
21}