/planets

planets

API Endpoint:

Request:

request.js
1fetch("https://swapi.info/api/planets")
2 .then((res) => res.json()) // Parse the JSON content from the API to be consumed
3 .then((json) => console.log(json)) // Log the JSON response to your console
4 .catch((error) => console.error(error)) // Log the API error (if any) to your console

Result:

response.json
1[
2 {
3 "name": "Tatooine",
4 "rotation_period": "23",
5 "orbital_period": "304",
6 "diameter": "10465",
7 "climate": "arid",
8 "gravity": "1 standard",
9 "terrain": "desert",
10 "surface_water": "1",
11 "population": "200000",
12 "residents": [
13 "https://swapi.info/api/people/1",
14 "https://swapi.info/api/people/2",
15 "https://swapi.info/api/people/4",
16 "https://swapi.info/api/people/6",
17 "https://swapi.info/api/people/7",
18 "https://swapi.info/api/people/8",
19 "https://swapi.info/api/people/9",
20 "https://swapi.info/api/people/11",
21 "https://swapi.info/api/people/43",
22 "https://swapi.info/api/people/62"
23 ],
24 "films": [
25 "https://swapi.info/api/films/1",
26 "https://swapi.info/api/films/3",
27 "https://swapi.info/api/films/4",
28 "https://swapi.info/api/films/5",
29 "https://swapi.info/api/films/6"
30 ],
31 "created": "2014-12-09T13:50:49.641000Z",
32 "edited": "2014-12-20T20:58:18.411000Z",
33 "url": "https://swapi.info/api/planets/1"
34 },
35 {
36 "name": "Alderaan",
37 "rotation_period": "24",
38 "orbital_period": "364",
39 "diameter": "12500",
40 "climate": "temperate",
41 "gravity": "1 standard",
42 "terrain": "grasslands, mountains",
43 "surface_water": "40",
44 "population": "2000000000",
45 "residents": [
46 "https://swapi.info/api/people/5",
47 "https://swapi.info/api/people/68",
48 "https://swapi.info/api/people/81"
49 ],
50 "films": [
51 "https://swapi.info/api/films/1",
52 "https://swapi.info/api/films/6"
53 ],
54 "created": "2014-12-10T11:35:48.479000Z",
55 "edited": "2014-12-20T20:58:18.420000Z",
56 "url": "https://swapi.info/api/planets/2"
57 },
58 {
59 "name": "Yavin IV",
60 "rotation_period": "24",
61 "orbital_period": "4818",
62 "diameter": "10200",
63 "climate": "temperate, tropical",
64 "gravity": "1 standard",
65 "terrain": "jungle, rainforests",
66 "surface_water": "8",
67 "population": "1000",
68 "residents": [],
69 "films": [
70 "https://swapi.info/api/films/1"
71 ],
72 "created": "2014-12-10T11:37:19.144000Z",
73 "edited": "2014-12-20T20:58:18.421000Z",
74 "url": "https://swapi.info/api/planets/3"
75 },
76 {
77 "name": "Hoth",
78 "rotation_period": "23",
79 "orbital_period": "549",
80 "diameter": "7200",
81 "climate": "frozen",
82 "gravity": "1.1 standard",
83 "terrain": "tundra, ice caves, mountain ranges",
84 "surface_water": "100",
85 "population": "unknown",
86 "residents": [],
87 "films": [
88 "https://swapi.info/api/films/2"
89 ],
90 "created": "2014-12-10T11:39:13.934000Z",
91 "edited": "2014-12-20T20:58:18.423000Z",
92 "url": "https://swapi.info/api/planets/4"
93 },
94 {
95 "name": "Dagobah",
96 "rotation_period": "23",
97 "orbital_period": "341",
98 "diameter": "8900",
99 "climate": "murky",
100 "gravity": "N/A",
101 "terrain": "swamp, jungles",
102 "surface_water": "8",
103 "population": "unknown",
104 "residents": [],
105 "films": [
106 "https://swapi.info/api/films/2",
107 "https://swapi.info/api/films/3",
108 "https://swapi.info/api/films/6"
109 ],
110 "created": "2014-12-10T11:42:22.590000Z",
111 "edited": "2014-12-20T20:58:18.425000Z",
112 "url": "https://swapi.info/api/planets/5"
113 },
114 {
115 "name": "Bespin",
116 "rotation_period": "12",
117 "orbital_period": "5110",
118 "diameter": "118000",
119 "climate": "temperate",
120 "gravity": "1.5 (surface), 1 standard (Cloud City)",
121 "terrain": "gas giant",
122 "surface_water": "0",
123 "population": "6000000",
124 "residents": [
125 "https://swapi.info/api/people/26"
126 ],
127 "films": [
128 "https://swapi.info/api/films/2"
129 ],
130 "created": "2014-12-10T11:43:55.240000Z",
131 "edited": "2014-12-20T20:58:18.427000Z",
132 "url": "https://swapi.info/api/planets/6"
133 },
134 {
135 "name": "Endor",
136 "rotation_period": "18",
137 "orbital_period": "402",
138 "diameter": "4900",
139 "climate": "temperate",
140 "gravity": "0.85 standard",
141 "terrain": "forests, mountains, lakes",
142 "surface_water": "8",
143 "population": "30000000",
144 "residents": [
145 "https://swapi.info/api/people/30"
146 ],
147 "films": [
148 "https://swapi.info/api/films/3"
149 ],
150 "created": "2014-12-10T11:50:29.349000Z",
151 "edited": "2014-12-20T20:58:18.429000Z",
152 "url": "https://swapi.info/api/planets/7"
153 },
154 {
155 "name": "Naboo",
156 "rotation_period": "26",
157 "orbital_period": "312",
158 "diameter": "12120",
159 "climate": "temperate",
160 "gravity": "1 standard",
161 "terrain": "grassy hills, swamps, forests, mountains",
162 "surface_water": "12",
163 "population": "4500000000",
164 "residents": [
165 "https://swapi.info/api/people/3",
166 "https://swapi.info/api/people/21",
167 "https://swapi.info/api/people/35",
168 "https://swapi.info/api/people/36",
169 "https://swapi.info/api/people/37",
170 "https://swapi.info/api/people/38",
171 "https://swapi.info/api/people/39",
172 "https://swapi.info/api/people/42",
173 "https://swapi.info/api/people/60",
174 "https://swapi.info/api/people/61",
175 "https://swapi.info/api/people/66"
176 ],
177 "films": [
178 "https://swapi.info/api/films/3",
179 "https://swapi.info/api/films/4",
180 "https://swapi.info/api/films/5",
181 "https://swapi.info/api/films/6"
182 ],
183 "created": "2014-12-10T11:52:31.066000Z",
184 "edited": "2014-12-20T20:58:18.430000Z",
185 "url": "https://swapi.info/api/planets/8"
186 },
187 {
188 "name": "Coruscant",
189 "rotation_period": "24",
190 "orbital_period": "368",
191 "diameter": "12240",
192 "climate": "temperate",
193 "gravity": "1 standard",
194 "terrain": "cityscape, mountains",
195 "surface_water": "unknown",
196 "population": "1000000000000",
197 "residents": [
198 "https://swapi.info/api/people/34",
199 "https://swapi.info/api/people/55",
200 "https://swapi.info/api/people/74"
201 ],
202 "films": [
203 "https://swapi.info/api/films/3",
204 "https://swapi.info/api/films/4",
205 "https://swapi.info/api/films/5",
206 "https://swapi.info/api/films/6"
207 ],
208 "created": "2014-12-10T11:54:13.921000Z",
209 "edited": "2014-12-20T20:58:18.432000Z",
210 "url": "https://swapi.info/api/planets/9"
211 },
212 {
213 "name": "Kamino",
214 "rotation_period": "27",
215 "orbital_period": "463",
216 "diameter": "19720",
217 "climate": "temperate",
218 "gravity": "1 standard",
219 "terrain": "ocean",
220 "surface_water": "100",
221 "population": "1000000000",
222 "residents": [
223 "https://swapi.info/api/people/22",
224 "https://swapi.info/api/people/72",
225 "https://swapi.info/api/people/73"
226 ],
227 "films": [
228 "https://swapi.info/api/films/5"
229 ],
230 "created": "2014-12-10T12:45:06.577000Z",
231 "edited": "2014-12-20T20:58:18.434000Z",
232 "url": "https://swapi.info/api/planets/10"
233 },
234 {
235 "name": "Geonosis",
236 "rotation_period": "30",
237 "orbital_period": "256",
238 "diameter": "11370",
239 "climate": "temperate, arid",
240 "gravity": "0.9 standard",
241 "terrain": "rock, desert, mountain, barren",
242 "surface_water": "5",
243 "population": "100000000000",
244 "residents": [
245 "https://swapi.info/api/people/63"
246 ],
247 "films": [
248 "https://swapi.info/api/films/5"
249 ],
250 "created": "2014-12-10T12:47:22.350000Z",
251 "edited": "2014-12-20T20:58:18.437000Z",
252 "url": "https://swapi.info/api/planets/11"
253 },
254 {
255 "name": "Utapau",
256 "rotation_period": "27",
257 "orbital_period": "351",
258 "diameter": "12900",
259 "climate": "temperate, arid, windy",
260 "gravity": "1 standard",
261 "terrain": "scrublands, savanna, canyons, sinkholes",
262 "surface_water": "0.9",
263 "population": "95000000",
264 "residents": [
265 "https://swapi.info/api/people/83"
266 ],
267 "films": [
268 "https://swapi.info/api/films/6"
269 ],
270 "created": "2014-12-10T12:49:01.491000Z",
271 "edited": "2014-12-20T20:58:18.439000Z",
272 "url": "https://swapi.info/api/planets/12"
273 },
274 {
275 "name": "Mustafar",
276 "rotation_period": "36",
277 "orbital_period": "412",
278 "diameter": "4200",
279 "climate": "hot",
280 "gravity": "1 standard",
281 "terrain": "volcanoes, lava rivers, mountains, caves",
282 "surface_water": "0",
283 "population": "20000",
284 "residents": [],
285 "films": [
286 "https://swapi.info/api/films/6"
287 ],
288 "created": "2014-12-10T12:50:16.526000Z",
289 "edited": "2014-12-20T20:58:18.440000Z",
290 "url": "https://swapi.info/api/planets/13"
291 },
292 {
293 "name": "Kashyyyk",
294 "rotation_period": "26",
295 "orbital_period": "381",
296 "diameter": "12765",
297 "climate": "tropical",
298 "gravity": "1 standard",
299 "terrain": "jungle, forests, lakes, rivers",
300 "surface_water": "60",
301 "population": "45000000",
302 "residents": [
303 "https://swapi.info/api/people/13",
304 "https://swapi.info/api/people/80"
305 ],
306 "films": [
307 "https://swapi.info/api/films/6"
308 ],
309 "created": "2014-12-10T13:32:00.124000Z",
310 "edited": "2014-12-20T20:58:18.442000Z",
311 "url": "https://swapi.info/api/planets/14"
312 },
313 {
314 "name": "Polis Massa",
315 "rotation_period": "24",
316 "orbital_period": "590",
317 "diameter": "0",
318 "climate": "artificial temperate ",
319 "gravity": "0.56 standard",
320 "terrain": "airless asteroid",
321 "surface_water": "0",
322 "population": "1000000",
323 "residents": [],
324 "films": [
325 "https://swapi.info/api/films/6"
326 ],
327 "created": "2014-12-10T13:33:46.405000Z",
328 "edited": "2014-12-20T20:58:18.444000Z",
329 "url": "https://swapi.info/api/planets/15"
330 },
331 {
332 "name": "Mygeeto",
333 "rotation_period": "12",
334 "orbital_period": "167",
335 "diameter": "10088",
336 "climate": "frigid",
337 "gravity": "1 standard",
338 "terrain": "glaciers, mountains, ice canyons",
339 "surface_water": "unknown",
340 "population": "19000000",
341 "residents": [],
342 "films": [
343 "https://swapi.info/api/films/6"
344 ],
345 "created": "2014-12-10T13:43:39.139000Z",
346 "edited": "2014-12-20T20:58:18.446000Z",
347 "url": "https://swapi.info/api/planets/16"
348 },
349 {
350 "name": "Felucia",
351 "rotation_period": "34",
352 "orbital_period": "231",
353 "diameter": "9100",
354 "climate": "hot, humid",
355 "gravity": "0.75 standard",
356 "terrain": "fungus forests",
357 "surface_water": "unknown",
358 "population": "8500000",
359 "residents": [],
360 "films": [
361 "https://swapi.info/api/films/6"
362 ],
363 "created": "2014-12-10T13:44:50.397000Z",
364 "edited": "2014-12-20T20:58:18.447000Z",
365 "url": "https://swapi.info/api/planets/17"
366 },
367 {
368 "name": "Cato Neimoidia",
369 "rotation_period": "25",
370 "orbital_period": "278",
371 "diameter": "0",
372 "climate": "temperate, moist",
373 "gravity": "1 standard",
374 "terrain": "mountains, fields, forests, rock arches",
375 "surface_water": "unknown",
376 "population": "10000000",
377 "residents": [
378 "https://swapi.info/api/people/33"
379 ],
380 "films": [
381 "https://swapi.info/api/films/6"
382 ],
383 "created": "2014-12-10T13:46:28.704000Z",
384 "edited": "2014-12-20T20:58:18.449000Z",
385 "url": "https://swapi.info/api/planets/18"
386 },
387 {
388 "name": "Saleucami",
389 "rotation_period": "26",
390 "orbital_period": "392",
391 "diameter": "14920",
392 "climate": "hot",
393 "gravity": "unknown",
394 "terrain": "caves, desert, mountains, volcanoes",
395 "surface_water": "unknown",
396 "population": "1400000000",
397 "residents": [],
398 "films": [
399 "https://swapi.info/api/films/6"
400 ],
401 "created": "2014-12-10T13:47:46.874000Z",
402 "edited": "2014-12-20T20:58:18.450000Z",
403 "url": "https://swapi.info/api/planets/19"
404 },
405 {
406 "name": "Stewjon",
407 "rotation_period": "unknown",
408 "orbital_period": "unknown",
409 "diameter": "0",
410 "climate": "temperate",
411 "gravity": "1 standard",
412 "terrain": "grass",
413 "surface_water": "unknown",
414 "population": "unknown",
415 "residents": [
416 "https://swapi.info/api/people/10"
417 ],
418 "films": [],
419 "created": "2014-12-10T16:16:26.566000Z",
420 "edited": "2014-12-20T20:58:18.452000Z",
421 "url": "https://swapi.info/api/planets/20"
422 },
423 {
424 "name": "Eriadu",
425 "rotation_period": "24",
426 "orbital_period": "360",
427 "diameter": "13490",
428 "climate": "polluted",
429 "gravity": "1 standard",
430 "terrain": "cityscape",
431 "surface_water": "unknown",
432 "population": "22000000000",
433 "residents": [
434 "https://swapi.info/api/people/12"
435 ],
436 "films": [],
437 "created": "2014-12-10T16:26:54.384000Z",
438 "edited": "2014-12-20T20:58:18.454000Z",
439 "url": "https://swapi.info/api/planets/21"
440 },
441 {
442 "name": "Corellia",
443 "rotation_period": "25",
444 "orbital_period": "329",
445 "diameter": "11000",
446 "climate": "temperate",
447 "gravity": "1 standard",
448 "terrain": "plains, urban, hills, forests",
449 "surface_water": "70",
450 "population": "3000000000",
451 "residents": [
452 "https://swapi.info/api/people/14",
453 "https://swapi.info/api/people/18"
454 ],
455 "films": [],
456 "created": "2014-12-10T16:49:12.453000Z",
457 "edited": "2014-12-20T20:58:18.456000Z",
458 "url": "https://swapi.info/api/planets/22"
459 },
460 {
461 "name": "Rodia",
462 "rotation_period": "29",
463 "orbital_period": "305",
464 "diameter": "7549",
465 "climate": "hot",
466 "gravity": "1 standard",
467 "terrain": "jungles, oceans, urban, swamps",
468 "surface_water": "60",
469 "population": "1300000000",
470 "residents": [
471 "https://swapi.info/api/people/15"
472 ],
473 "films": [],
474 "created": "2014-12-10T17:03:28.110000Z",
475 "edited": "2014-12-20T20:58:18.458000Z",
476 "url": "https://swapi.info/api/planets/23"
477 },
478 {
479 "name": "Nal Hutta",
480 "rotation_period": "87",
481 "orbital_period": "413",
482 "diameter": "12150",
483 "climate": "temperate",
484 "gravity": "1 standard",
485 "terrain": "urban, oceans, swamps, bogs",
486 "surface_water": "unknown",
487 "population": "7000000000",
488 "residents": [
489 "https://swapi.info/api/people/16"
490 ],
491 "films": [],
492 "created": "2014-12-10T17:11:29.452000Z",
493 "edited": "2014-12-20T20:58:18.460000Z",
494 "url": "https://swapi.info/api/planets/24"
495 },
496 {
497 "name": "Dantooine",
498 "rotation_period": "25",
499 "orbital_period": "378",
500 "diameter": "9830",
501 "climate": "temperate",
502 "gravity": "1 standard",
503 "terrain": "oceans, savannas, mountains, grasslands",
504 "surface_water": "unknown",
505 "population": "1000",
506 "residents": [],
507 "films": [],
508 "created": "2014-12-10T17:23:29.896000Z",
509 "edited": "2014-12-20T20:58:18.461000Z",
510 "url": "https://swapi.info/api/planets/25"
511 },
512 {
513 "name": "Bestine IV",
514 "rotation_period": "26",
515 "orbital_period": "680",
516 "diameter": "6400",
517 "climate": "temperate",
518 "gravity": "unknown",
519 "terrain": "rocky islands, oceans",
520 "surface_water": "98",
521 "population": "62000000",
522 "residents": [
523 "https://swapi.info/api/people/19"
524 ],
525 "films": [],
526 "created": "2014-12-12T11:16:55.078000Z",
527 "edited": "2014-12-20T20:58:18.463000Z",
528 "url": "https://swapi.info/api/planets/26"
529 },
530 {
531 "name": "Ord Mantell",
532 "rotation_period": "26",
533 "orbital_period": "334",
534 "diameter": "14050",
535 "climate": "temperate",
536 "gravity": "1 standard",
537 "terrain": "plains, seas, mesas",
538 "surface_water": "10",
539 "population": "4000000000",
540 "residents": [],
541 "films": [
542 "https://swapi.info/api/films/2"
543 ],
544 "created": "2014-12-15T12:23:41.661000Z",
545 "edited": "2014-12-20T20:58:18.464000Z",
546 "url": "https://swapi.info/api/planets/27"
547 },
548 {
549 "name": "unknown",
550 "rotation_period": "0",
551 "orbital_period": "0",
552 "diameter": "0",
553 "climate": "unknown",
554 "gravity": "unknown",
555 "terrain": "unknown",
556 "surface_water": "unknown",
557 "population": "unknown",
558 "residents": [
559 "https://swapi.info/api/people/20",
560 "https://swapi.info/api/people/23",
561 "https://swapi.info/api/people/29",
562 "https://swapi.info/api/people/32",
563 "https://swapi.info/api/people/75"
564 ],
565 "films": [],
566 "created": "2014-12-15T12:25:59.569000Z",
567 "edited": "2014-12-20T20:58:18.466000Z",
568 "url": "https://swapi.info/api/planets/28"
569 },
570 {
571 "name": "Trandosha",
572 "rotation_period": "25",
573 "orbital_period": "371",
574 "diameter": "0",
575 "climate": "arid",
576 "gravity": "0.62 standard",
577 "terrain": "mountains, seas, grasslands, deserts",
578 "surface_water": "unknown",
579 "population": "42000000",
580 "residents": [
581 "https://swapi.info/api/people/24"
582 ],
583 "films": [],
584 "created": "2014-12-15T12:53:47.695000Z",
585 "edited": "2014-12-20T20:58:18.468000Z",
586 "url": "https://swapi.info/api/planets/29"
587 },
588 {
589 "name": "Socorro",
590 "rotation_period": "20",
591 "orbital_period": "326",
592 "diameter": "0",
593 "climate": "arid",
594 "gravity": "1 standard",
595 "terrain": "deserts, mountains",
596 "surface_water": "unknown",
597 "population": "300000000",
598 "residents": [
599 "https://swapi.info/api/people/25"
600 ],
601 "films": [],
602 "created": "2014-12-15T12:56:31.121000Z",
603 "edited": "2014-12-20T20:58:18.469000Z",
604 "url": "https://swapi.info/api/planets/30"
605 },
606 {
607 "name": "Mon Cala",
608 "rotation_period": "21",
609 "orbital_period": "398",
610 "diameter": "11030",
611 "climate": "temperate",
612 "gravity": "1",
613 "terrain": "oceans, reefs, islands",
614 "surface_water": "100",
615 "population": "27000000000",
616 "residents": [
617 "https://swapi.info/api/people/27"
618 ],
619 "films": [],
620 "created": "2014-12-18T11:07:01.792000Z",
621 "edited": "2014-12-20T20:58:18.471000Z",
622 "url": "https://swapi.info/api/planets/31"
623 },
624 {
625 "name": "Chandrila",
626 "rotation_period": "20",
627 "orbital_period": "368",
628 "diameter": "13500",
629 "climate": "temperate",
630 "gravity": "1",
631 "terrain": "plains, forests",
632 "surface_water": "40",
633 "population": "1200000000",
634 "residents": [
635 "https://swapi.info/api/people/28"
636 ],
637 "films": [],
638 "created": "2014-12-18T11:11:51.872000Z",
639 "edited": "2014-12-20T20:58:18.472000Z",
640 "url": "https://swapi.info/api/planets/32"
641 },
642 {
643 "name": "Sullust",
644 "rotation_period": "20",
645 "orbital_period": "263",
646 "diameter": "12780",
647 "climate": "superheated",
648 "gravity": "1",
649 "terrain": "mountains, volcanoes, rocky deserts",
650 "surface_water": "5",
651 "population": "18500000000",
652 "residents": [
653 "https://swapi.info/api/people/31"
654 ],
655 "films": [],
656 "created": "2014-12-18T11:25:40.243000Z",
657 "edited": "2014-12-20T20:58:18.474000Z",
658 "url": "https://swapi.info/api/planets/33"
659 },
660 {
661 "name": "Toydaria",
662 "rotation_period": "21",
663 "orbital_period": "184",
664 "diameter": "7900",
665 "climate": "temperate",
666 "gravity": "1",
667 "terrain": "swamps, lakes",
668 "surface_water": "unknown",
669 "population": "11000000",
670 "residents": [
671 "https://swapi.info/api/people/40"
672 ],
673 "films": [],
674 "created": "2014-12-19T17:47:54.403000Z",
675 "edited": "2014-12-20T20:58:18.476000Z",
676 "url": "https://swapi.info/api/planets/34"
677 },
678 {
679 "name": "Malastare",
680 "rotation_period": "26",
681 "orbital_period": "201",
682 "diameter": "18880",
683 "climate": "arid, temperate, tropical",
684 "gravity": "1.56",
685 "terrain": "swamps, deserts, jungles, mountains",
686 "surface_water": "unknown",
687 "population": "2000000000",
688 "residents": [
689 "https://swapi.info/api/people/41"
690 ],
691 "films": [],
692 "created": "2014-12-19T17:52:13.106000Z",
693 "edited": "2014-12-20T20:58:18.478000Z",
694 "url": "https://swapi.info/api/planets/35"
695 },
696 {
697 "name": "Dathomir",
698 "rotation_period": "24",
699 "orbital_period": "491",
700 "diameter": "10480",
701 "climate": "temperate",
702 "gravity": "0.9",
703 "terrain": "forests, deserts, savannas",
704 "surface_water": "unknown",
705 "population": "5200",
706 "residents": [
707 "https://swapi.info/api/people/44"
708 ],
709 "films": [],
710 "created": "2014-12-19T18:00:40.142000Z",
711 "edited": "2014-12-20T20:58:18.480000Z",
712 "url": "https://swapi.info/api/planets/36"
713 },
714 {
715 "name": "Ryloth",
716 "rotation_period": "30",
717 "orbital_period": "305",
718 "diameter": "10600",
719 "climate": "temperate, arid, subartic",
720 "gravity": "1",
721 "terrain": "mountains, valleys, deserts, tundra",
722 "surface_water": "5",
723 "population": "1500000000",
724 "residents": [
725 "https://swapi.info/api/people/45",
726 "https://swapi.info/api/people/46"
727 ],
728 "films": [],
729 "created": "2014-12-20T09:46:25.740000Z",
730 "edited": "2014-12-20T20:58:18.481000Z",
731 "url": "https://swapi.info/api/planets/37"
732 },
733 {
734 "name": "Aleen Minor",
735 "rotation_period": "unknown",
736 "orbital_period": "unknown",
737 "diameter": "unknown",
738 "climate": "unknown",
739 "gravity": "unknown",
740 "terrain": "unknown",
741 "surface_water": "unknown",
742 "population": "unknown",
743 "residents": [
744 "https://swapi.info/api/people/47"
745 ],
746 "films": [],
747 "created": "2014-12-20T09:52:23.452000Z",
748 "edited": "2014-12-20T20:58:18.483000Z",
749 "url": "https://swapi.info/api/planets/38"
750 },
751 {
752 "name": "Vulpter",
753 "rotation_period": "22",
754 "orbital_period": "391",
755 "diameter": "14900",
756 "climate": "temperate, artic",
757 "gravity": "1",
758 "terrain": "urban, barren",
759 "surface_water": "unknown",
760 "population": "421000000",
761 "residents": [
762 "https://swapi.info/api/people/48"
763 ],
764 "films": [],
765 "created": "2014-12-20T09:56:58.874000Z",
766 "edited": "2014-12-20T20:58:18.485000Z",
767 "url": "https://swapi.info/api/planets/39"
768 },
769 {
770 "name": "Troiken",
771 "rotation_period": "unknown",
772 "orbital_period": "unknown",
773 "diameter": "unknown",
774 "climate": "unknown",
775 "gravity": "unknown",
776 "terrain": "desert, tundra, rainforests, mountains",
777 "surface_water": "unknown",
778 "population": "unknown",
779 "residents": [
780 "https://swapi.info/api/people/49"
781 ],
782 "films": [],
783 "created": "2014-12-20T10:01:37.395000Z",
784 "edited": "2014-12-20T20:58:18.487000Z",
785 "url": "https://swapi.info/api/planets/40"
786 },
787 {
788 "name": "Tund",
789 "rotation_period": "48",
790 "orbital_period": "1770",
791 "diameter": "12190",
792 "climate": "unknown",
793 "gravity": "unknown",
794 "terrain": "barren, ash",
795 "surface_water": "unknown",
796 "population": "0",
797 "residents": [
798 "https://swapi.info/api/people/50"
799 ],
800 "films": [],
801 "created": "2014-12-20T10:07:29.578000Z",
802 "edited": "2014-12-20T20:58:18.489000Z",
803 "url": "https://swapi.info/api/planets/41"
804 },
805 {
806 "name": "Haruun Kal",
807 "rotation_period": "25",
808 "orbital_period": "383",
809 "diameter": "10120",
810 "climate": "temperate",
811 "gravity": "0.98",
812 "terrain": "toxic cloudsea, plateaus, volcanoes",
813 "surface_water": "unknown",
814 "population": "705300",
815 "residents": [
816 "https://swapi.info/api/people/51"
817 ],
818 "films": [],
819 "created": "2014-12-20T10:12:28.980000Z",
820 "edited": "2014-12-20T20:58:18.491000Z",
821 "url": "https://swapi.info/api/planets/42"
822 },
823 {
824 "name": "Cerea",
825 "rotation_period": "27",
826 "orbital_period": "386",
827 "diameter": "unknown",
828 "climate": "temperate",
829 "gravity": "1",
830 "terrain": "verdant",
831 "surface_water": "20",
832 "population": "450000000",
833 "residents": [
834 "https://swapi.info/api/people/52"
835 ],
836 "films": [],
837 "created": "2014-12-20T10:14:48.178000Z",
838 "edited": "2014-12-20T20:58:18.493000Z",
839 "url": "https://swapi.info/api/planets/43"
840 },
841 {
842 "name": "Glee Anselm",
843 "rotation_period": "33",
844 "orbital_period": "206",
845 "diameter": "15600",
846 "climate": "tropical, temperate",
847 "gravity": "1",
848 "terrain": "lakes, islands, swamps, seas",
849 "surface_water": "80",
850 "population": "500000000",
851 "residents": [
852 "https://swapi.info/api/people/53"
853 ],
854 "films": [],
855 "created": "2014-12-20T10:18:26.110000Z",
856 "edited": "2014-12-20T20:58:18.495000Z",
857 "url": "https://swapi.info/api/planets/44"
858 },
859 {
860 "name": "Iridonia",
861 "rotation_period": "29",
862 "orbital_period": "413",
863 "diameter": "unknown",
864 "climate": "unknown",
865 "gravity": "unknown",
866 "terrain": "rocky canyons, acid pools",
867 "surface_water": "unknown",
868 "population": "unknown",
869 "residents": [
870 "https://swapi.info/api/people/54"
871 ],
872 "films": [],
873 "created": "2014-12-20T10:26:05.788000Z",
874 "edited": "2014-12-20T20:58:18.497000Z",
875 "url": "https://swapi.info/api/planets/45"
876 },
877 {
878 "name": "Tholoth",
879 "rotation_period": "unknown",
880 "orbital_period": "unknown",
881 "diameter": "unknown",
882 "climate": "unknown",
883 "gravity": "unknown",
884 "terrain": "unknown",
885 "surface_water": "unknown",
886 "population": "unknown",
887 "residents": [],
888 "films": [],
889 "created": "2014-12-20T10:28:31.117000Z",
890 "edited": "2014-12-20T20:58:18.498000Z",
891 "url": "https://swapi.info/api/planets/46"
892 },
893 {
894 "name": "Iktotch",
895 "rotation_period": "22",
896 "orbital_period": "481",
897 "diameter": "unknown",
898 "climate": "arid, rocky, windy",
899 "gravity": "1",
900 "terrain": "rocky",
901 "surface_water": "unknown",
902 "population": "unknown",
903 "residents": [
904 "https://swapi.info/api/people/56"
905 ],
906 "films": [],
907 "created": "2014-12-20T10:31:32.413000Z",
908 "edited": "2014-12-20T20:58:18.500000Z",
909 "url": "https://swapi.info/api/planets/47"
910 },
911 {
912 "name": "Quermia",
913 "rotation_period": "unknown",
914 "orbital_period": "unknown",
915 "diameter": "unknown",
916 "climate": "unknown",
917 "gravity": "unknown",
918 "terrain": "unknown",
919 "surface_water": "unknown",
920 "population": "unknown",
921 "residents": [
922 "https://swapi.info/api/people/57"
923 ],
924 "films": [],
925 "created": "2014-12-20T10:34:08.249000Z",
926 "edited": "2014-12-20T20:58:18.502000Z",
927 "url": "https://swapi.info/api/planets/48"
928 },
929 {
930 "name": "Dorin",
931 "rotation_period": "22",
932 "orbital_period": "409",
933 "diameter": "13400",
934 "climate": "temperate",
935 "gravity": "1",
936 "terrain": "unknown",
937 "surface_water": "unknown",
938 "population": "unknown",
939 "residents": [
940 "https://swapi.info/api/people/58"
941 ],
942 "films": [],
943 "created": "2014-12-20T10:48:36.141000Z",
944 "edited": "2014-12-20T20:58:18.504000Z",
945 "url": "https://swapi.info/api/planets/49"
946 },
947 {
948 "name": "Champala",
949 "rotation_period": "27",
950 "orbital_period": "318",
951 "diameter": "unknown",
952 "climate": "temperate",
953 "gravity": "1",
954 "terrain": "oceans, rainforests, plateaus",
955 "surface_water": "unknown",
956 "population": "3500000000",
957 "residents": [
958 "https://swapi.info/api/people/59"
959 ],
960 "films": [],
961 "created": "2014-12-20T10:52:51.524000Z",
962 "edited": "2014-12-20T20:58:18.506000Z",
963 "url": "https://swapi.info/api/planets/50"
964 },
965 {
966 "name": "Mirial",
967 "rotation_period": "unknown",
968 "orbital_period": "unknown",
969 "diameter": "unknown",
970 "climate": "unknown",
971 "gravity": "unknown",
972 "terrain": "deserts",
973 "surface_water": "unknown",
974 "population": "unknown",
975 "residents": [
976 "https://swapi.info/api/people/64",
977 "https://swapi.info/api/people/65"
978 ],
979 "films": [],
980 "created": "2014-12-20T16:44:46.318000Z",
981 "edited": "2014-12-20T20:58:18.508000Z",
982 "url": "https://swapi.info/api/planets/51"
983 },
984 {
985 "name": "Serenno",
986 "rotation_period": "unknown",
987 "orbital_period": "unknown",
988 "diameter": "unknown",
989 "climate": "unknown",
990 "gravity": "unknown",
991 "terrain": "rainforests, rivers, mountains",
992 "surface_water": "unknown",
993 "population": "unknown",
994 "residents": [
995 "https://swapi.info/api/people/67"
996 ],
997 "films": [],
998 "created": "2014-12-20T16:52:13.357000Z",
999 "edited": "2014-12-20T20:58:18.510000Z",
1000 "url": "https://swapi.info/api/planets/52"
1001 },
1002 {
1003 "name": "Concord Dawn",
1004 "rotation_period": "unknown",
1005 "orbital_period": "unknown",
1006 "diameter": "unknown",
1007 "climate": "unknown",
1008 "gravity": "unknown",
1009 "terrain": "jungles, forests, deserts",
1010 "surface_water": "unknown",
1011 "population": "unknown",
1012 "residents": [
1013 "https://swapi.info/api/people/69"
1014 ],
1015 "films": [],
1016 "created": "2014-12-20T16:54:39.909000Z",
1017 "edited": "2014-12-20T20:58:18.512000Z",
1018 "url": "https://swapi.info/api/planets/53"
1019 },
1020 {
1021 "name": "Zolan",
1022 "rotation_period": "unknown",
1023 "orbital_period": "unknown",
1024 "diameter": "unknown",
1025 "climate": "unknown",
1026 "gravity": "unknown",
1027 "terrain": "unknown",
1028 "surface_water": "unknown",
1029 "population": "unknown",
1030 "residents": [
1031 "https://swapi.info/api/people/70"
1032 ],
1033 "films": [],
1034 "created": "2014-12-20T16:56:37.250000Z",
1035 "edited": "2014-12-20T20:58:18.514000Z",
1036 "url": "https://swapi.info/api/planets/54"
1037 },
1038 {
1039 "name": "Ojom",
1040 "rotation_period": "unknown",
1041 "orbital_period": "unknown",
1042 "diameter": "unknown",
1043 "climate": "frigid",
1044 "gravity": "unknown",
1045 "terrain": "oceans, glaciers",
1046 "surface_water": "100",
1047 "population": "500000000",
1048 "residents": [
1049 "https://swapi.info/api/people/71"
1050 ],
1051 "films": [],
1052 "created": "2014-12-20T17:27:41.286000Z",
1053 "edited": "2014-12-20T20:58:18.516000Z",
1054 "url": "https://swapi.info/api/planets/55"
1055 },
1056 {
1057 "name": "Skako",
1058 "rotation_period": "27",
1059 "orbital_period": "384",
1060 "diameter": "unknown",
1061 "climate": "temperate",
1062 "gravity": "1",
1063 "terrain": "urban, vines",
1064 "surface_water": "unknown",
1065 "population": "500000000000",
1066 "residents": [
1067 "https://swapi.info/api/people/76"
1068 ],
1069 "films": [],
1070 "created": "2014-12-20T17:50:47.864000Z",
1071 "edited": "2014-12-20T20:58:18.517000Z",
1072 "url": "https://swapi.info/api/planets/56"
1073 },
1074 {
1075 "name": "Muunilinst",
1076 "rotation_period": "28",
1077 "orbital_period": "412",
1078 "diameter": "13800",
1079 "climate": "temperate",
1080 "gravity": "1",
1081 "terrain": "plains, forests, hills, mountains",
1082 "surface_water": "25",
1083 "population": "5000000000",
1084 "residents": [
1085 "https://swapi.info/api/people/77"
1086 ],
1087 "films": [],
1088 "created": "2014-12-20T17:57:47.420000Z",
1089 "edited": "2014-12-20T20:58:18.519000Z",
1090 "url": "https://swapi.info/api/planets/57"
1091 },
1092 {
1093 "name": "Shili",
1094 "rotation_period": "unknown",
1095 "orbital_period": "unknown",
1096 "diameter": "unknown",
1097 "climate": "temperate",
1098 "gravity": "1",
1099 "terrain": "cities, savannahs, seas, plains",
1100 "surface_water": "unknown",
1101 "population": "unknown",
1102 "residents": [
1103 "https://swapi.info/api/people/78"
1104 ],
1105 "films": [],
1106 "created": "2014-12-20T18:43:14.049000Z",
1107 "edited": "2014-12-20T20:58:18.521000Z",
1108 "url": "https://swapi.info/api/planets/58"
1109 },
1110 {
1111 "name": "Kalee",
1112 "rotation_period": "23",
1113 "orbital_period": "378",
1114 "diameter": "13850",
1115 "climate": "arid, temperate, tropical",
1116 "gravity": "1",
1117 "terrain": "rainforests, cliffs, canyons, seas",
1118 "surface_water": "unknown",
1119 "population": "4000000000",
1120 "residents": [
1121 "https://swapi.info/api/people/79"
1122 ],
1123 "films": [],
1124 "created": "2014-12-20T19:43:51.278000Z",
1125 "edited": "2014-12-20T20:58:18.523000Z",
1126 "url": "https://swapi.info/api/planets/59"
1127 },
1128 {
1129 "name": "Umbara",
1130 "rotation_period": "unknown",
1131 "orbital_period": "unknown",
1132 "diameter": "unknown",
1133 "climate": "unknown",
1134 "gravity": "unknown",
1135 "terrain": "unknown",
1136 "surface_water": "unknown",
1137 "population": "unknown",
1138 "residents": [
1139 "https://swapi.info/api/people/82"
1140 ],
1141 "films": [],
1142 "created": "2014-12-20T20:18:36.256000Z",
1143 "edited": "2014-12-20T20:58:18.525000Z",
1144 "url": "https://swapi.info/api/planets/60"
1145 }
1146]

Visit the API endpoint:

What is this ?

The Star Wars API, or "swapi" (Swah-pee) is the world‘s first quantified and programmatically-accessible data source for all the data from the Star Wars canon universe!

We‘ve taken all the rich contextual stuff from the universe and formatted into something easier to consume with software. Then we went and stuck an API on the front so you can access it all!

How can I use it ?

All the data is accessible through our HTTP web API. Consult our explorer pages if you‘d like to get started.

Promise of longevity

Swapi.info is here to stay!. Created as service which runs solely via static files, this service does not require database or expensive hosting to run. Currently hosted on the generosity of Cloudflare Pages, the only barrier to utilization is a public facing domain. No other costs associated with running this project yourself as well. Created as a self-owned alternative to keep my older projects alive, now publicly available and Open Source allows it to be perpetually available to the community.