Endpoint: species

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

Request

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

Response

response.json
1{
2 "name": "Gungan",
3 "classification": "amphibian",
4 "designation": "sentient",
5 "average_height": "190",
6 "skin_colors": "brown, green",
7 "hair_colors": "none",
8 "eye_colors": "orange",
9 "average_lifespan": "unknown",
10 "homeworld": "https://swapi.mimo.dev/api/planets/8/",
11 "language": "Gungan basic",
12 "people": [
13 "https://swapi.mimo.dev/api/people/36/",
14 "https://swapi.mimo.dev/api/people/37/",
15 "https://swapi.mimo.dev/api/people/38/"
16 ],
17 "films": [
18 "https://swapi.mimo.dev/api/films/4/",
19 "https://swapi.mimo.dev/api/films/5/"
20 ],
21 "created": "2014-12-19T17:30:37.341000Z",
22 "edited": "2014-12-20T21:36:42.163000Z",
23 "url": "https://swapi.mimo.dev/api/species/12/"
24}