Endpoint: planets

GEThttps://swapi.mimo.dev/api/planets/Vulpter

Request

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

Response

response.json
1{
2 "name": "Vulpter",
3 "rotation_period": "22",
4 "orbital_period": "391",
5 "diameter": "14900",
6 "climate": "temperate, artic",
7 "gravity": "1",
8 "terrain": "urban, barren",
9 "surface_water": "unknown",
10 "population": "421000000",
11 "residents": [
12 "https://swapi.mimo.dev/api/people/48/"
13 ],
14 "films": [],
15 "created": "2014-12-20T09:56:58.874000Z",
16 "edited": "2014-12-20T20:58:18.485000Z",
17 "url": "https://swapi.mimo.dev/api/planets/39/"
18}