/people

people

API Endpoint:

Request:

request.js
1fetch("https://swapi.info/api/people")
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": "Luke Skywalker",
4 "height": "172",
5 "mass": "77",
6 "hair_color": "blond",
7 "skin_color": "fair",
8 "eye_color": "blue",
9 "birth_year": "19BBY",
10 "gender": "male",
11 "homeworld": "https://swapi.info/api/planets/1",
12 "films": [
13 "https://swapi.info/api/films/1",
14 "https://swapi.info/api/films/2",
15 "https://swapi.info/api/films/3",
16 "https://swapi.info/api/films/6"
17 ],
18 "species": [],
19 "vehicles": [
20 "https://swapi.info/api/vehicles/14",
21 "https://swapi.info/api/vehicles/30"
22 ],
23 "starships": [
24 "https://swapi.info/api/starships/12",
25 "https://swapi.info/api/starships/22"
26 ],
27 "created": "2014-12-09T13:50:51.644000Z",
28 "edited": "2014-12-20T21:17:56.891000Z",
29 "url": "https://swapi.info/api/people/1"
30 },
31 {
32 "name": "C-3PO",
33 "height": "167",
34 "mass": "75",
35 "hair_color": "n/a",
36 "skin_color": "gold",
37 "eye_color": "yellow",
38 "birth_year": "112BBY",
39 "gender": "n/a",
40 "homeworld": "https://swapi.info/api/planets/1",
41 "films": [
42 "https://swapi.info/api/films/1",
43 "https://swapi.info/api/films/2",
44 "https://swapi.info/api/films/3",
45 "https://swapi.info/api/films/4",
46 "https://swapi.info/api/films/5",
47 "https://swapi.info/api/films/6"
48 ],
49 "species": [
50 "https://swapi.info/api/species/2"
51 ],
52 "vehicles": [],
53 "starships": [],
54 "created": "2014-12-10T15:10:51.357000Z",
55 "edited": "2014-12-20T21:17:50.309000Z",
56 "url": "https://swapi.info/api/people/2"
57 },
58 {
59 "name": "R2-D2",
60 "height": "96",
61 "mass": "32",
62 "hair_color": "n/a",
63 "skin_color": "white, blue",
64 "eye_color": "red",
65 "birth_year": "33BBY",
66 "gender": "n/a",
67 "homeworld": "https://swapi.info/api/planets/8",
68 "films": [
69 "https://swapi.info/api/films/1",
70 "https://swapi.info/api/films/2",
71 "https://swapi.info/api/films/3",
72 "https://swapi.info/api/films/4",
73 "https://swapi.info/api/films/5",
74 "https://swapi.info/api/films/6"
75 ],
76 "species": [
77 "https://swapi.info/api/species/2"
78 ],
79 "vehicles": [],
80 "starships": [],
81 "created": "2014-12-10T15:11:50.376000Z",
82 "edited": "2014-12-20T21:17:50.311000Z",
83 "url": "https://swapi.info/api/people/3"
84 },
85 {
86 "name": "Darth Vader",
87 "height": "202",
88 "mass": "136",
89 "hair_color": "none",
90 "skin_color": "white",
91 "eye_color": "yellow",
92 "birth_year": "41.9BBY",
93 "gender": "male",
94 "homeworld": "https://swapi.info/api/planets/1",
95 "films": [
96 "https://swapi.info/api/films/1",
97 "https://swapi.info/api/films/2",
98 "https://swapi.info/api/films/3",
99 "https://swapi.info/api/films/6"
100 ],
101 "species": [],
102 "vehicles": [],
103 "starships": [
104 "https://swapi.info/api/starships/13"
105 ],
106 "created": "2014-12-10T15:18:20.704000Z",
107 "edited": "2014-12-20T21:17:50.313000Z",
108 "url": "https://swapi.info/api/people/4"
109 },
110 {
111 "name": "Leia Organa",
112 "height": "150",
113 "mass": "49",
114 "hair_color": "brown",
115 "skin_color": "light",
116 "eye_color": "brown",
117 "birth_year": "19BBY",
118 "gender": "female",
119 "homeworld": "https://swapi.info/api/planets/2",
120 "films": [
121 "https://swapi.info/api/films/1",
122 "https://swapi.info/api/films/2",
123 "https://swapi.info/api/films/3",
124 "https://swapi.info/api/films/6"
125 ],
126 "species": [],
127 "vehicles": [
128 "https://swapi.info/api/vehicles/30"
129 ],
130 "starships": [],
131 "created": "2014-12-10T15:20:09.791000Z",
132 "edited": "2014-12-20T21:17:50.315000Z",
133 "url": "https://swapi.info/api/people/5"
134 },
135 {
136 "name": "Owen Lars",
137 "height": "178",
138 "mass": "120",
139 "hair_color": "brown, grey",
140 "skin_color": "light",
141 "eye_color": "blue",
142 "birth_year": "52BBY",
143 "gender": "male",
144 "homeworld": "https://swapi.info/api/planets/1",
145 "films": [
146 "https://swapi.info/api/films/1",
147 "https://swapi.info/api/films/5",
148 "https://swapi.info/api/films/6"
149 ],
150 "species": [],
151 "vehicles": [],
152 "starships": [],
153 "created": "2014-12-10T15:52:14.024000Z",
154 "edited": "2014-12-20T21:17:50.317000Z",
155 "url": "https://swapi.info/api/people/6"
156 },
157 {
158 "name": "Beru Whitesun lars",
159 "height": "165",
160 "mass": "75",
161 "hair_color": "brown",
162 "skin_color": "light",
163 "eye_color": "blue",
164 "birth_year": "47BBY",
165 "gender": "female",
166 "homeworld": "https://swapi.info/api/planets/1",
167 "films": [
168 "https://swapi.info/api/films/1",
169 "https://swapi.info/api/films/5",
170 "https://swapi.info/api/films/6"
171 ],
172 "species": [],
173 "vehicles": [],
174 "starships": [],
175 "created": "2014-12-10T15:53:41.121000Z",
176 "edited": "2014-12-20T21:17:50.319000Z",
177 "url": "https://swapi.info/api/people/7"
178 },
179 {
180 "name": "R5-D4",
181 "height": "97",
182 "mass": "32",
183 "hair_color": "n/a",
184 "skin_color": "white, red",
185 "eye_color": "red",
186 "birth_year": "unknown",
187 "gender": "n/a",
188 "homeworld": "https://swapi.info/api/planets/1",
189 "films": [
190 "https://swapi.info/api/films/1"
191 ],
192 "species": [
193 "https://swapi.info/api/species/2"
194 ],
195 "vehicles": [],
196 "starships": [],
197 "created": "2014-12-10T15:57:50.959000Z",
198 "edited": "2014-12-20T21:17:50.321000Z",
199 "url": "https://swapi.info/api/people/8"
200 },
201 {
202 "name": "Biggs Darklighter",
203 "height": "183",
204 "mass": "84",
205 "hair_color": "black",
206 "skin_color": "light",
207 "eye_color": "brown",
208 "birth_year": "24BBY",
209 "gender": "male",
210 "homeworld": "https://swapi.info/api/planets/1",
211 "films": [
212 "https://swapi.info/api/films/1"
213 ],
214 "species": [],
215 "vehicles": [],
216 "starships": [
217 "https://swapi.info/api/starships/12"
218 ],
219 "created": "2014-12-10T15:59:50.509000Z",
220 "edited": "2014-12-20T21:17:50.323000Z",
221 "url": "https://swapi.info/api/people/9"
222 },
223 {
224 "name": "Obi-Wan Kenobi",
225 "height": "182",
226 "mass": "77",
227 "hair_color": "auburn, white",
228 "skin_color": "fair",
229 "eye_color": "blue-gray",
230 "birth_year": "57BBY",
231 "gender": "male",
232 "homeworld": "https://swapi.info/api/planets/20",
233 "films": [
234 "https://swapi.info/api/films/1",
235 "https://swapi.info/api/films/2",
236 "https://swapi.info/api/films/3",
237 "https://swapi.info/api/films/4",
238 "https://swapi.info/api/films/5",
239 "https://swapi.info/api/films/6"
240 ],
241 "species": [],
242 "vehicles": [
243 "https://swapi.info/api/vehicles/38"
244 ],
245 "starships": [
246 "https://swapi.info/api/starships/48",
247 "https://swapi.info/api/starships/59",
248 "https://swapi.info/api/starships/64",
249 "https://swapi.info/api/starships/65",
250 "https://swapi.info/api/starships/74"
251 ],
252 "created": "2014-12-10T16:16:29.192000Z",
253 "edited": "2014-12-20T21:17:50.325000Z",
254 "url": "https://swapi.info/api/people/10"
255 },
256 {
257 "name": "Anakin Skywalker",
258 "height": "188",
259 "mass": "84",
260 "hair_color": "blond",
261 "skin_color": "fair",
262 "eye_color": "blue",
263 "birth_year": "41.9BBY",
264 "gender": "male",
265 "homeworld": "https://swapi.info/api/planets/1",
266 "films": [
267 "https://swapi.info/api/films/4",
268 "https://swapi.info/api/films/5",
269 "https://swapi.info/api/films/6"
270 ],
271 "species": [],
272 "vehicles": [
273 "https://swapi.info/api/vehicles/44",
274 "https://swapi.info/api/vehicles/46"
275 ],
276 "starships": [
277 "https://swapi.info/api/starships/39",
278 "https://swapi.info/api/starships/59",
279 "https://swapi.info/api/starships/65"
280 ],
281 "created": "2014-12-10T16:20:44.310000Z",
282 "edited": "2014-12-20T21:17:50.327000Z",
283 "url": "https://swapi.info/api/people/11"
284 },
285 {
286 "name": "Wilhuff Tarkin",
287 "height": "180",
288 "mass": "unknown",
289 "hair_color": "auburn, grey",
290 "skin_color": "fair",
291 "eye_color": "blue",
292 "birth_year": "64BBY",
293 "gender": "male",
294 "homeworld": "https://swapi.info/api/planets/21",
295 "films": [
296 "https://swapi.info/api/films/1",
297 "https://swapi.info/api/films/6"
298 ],
299 "species": [],
300 "vehicles": [],
301 "starships": [],
302 "created": "2014-12-10T16:26:56.138000Z",
303 "edited": "2014-12-20T21:17:50.330000Z",
304 "url": "https://swapi.info/api/people/12"
305 },
306 {
307 "name": "Chewbacca",
308 "height": "228",
309 "mass": "112",
310 "hair_color": "brown",
311 "skin_color": "unknown",
312 "eye_color": "blue",
313 "birth_year": "200BBY",
314 "gender": "male",
315 "homeworld": "https://swapi.info/api/planets/14",
316 "films": [
317 "https://swapi.info/api/films/1",
318 "https://swapi.info/api/films/2",
319 "https://swapi.info/api/films/3",
320 "https://swapi.info/api/films/6"
321 ],
322 "species": [
323 "https://swapi.info/api/species/3"
324 ],
325 "vehicles": [
326 "https://swapi.info/api/vehicles/19"
327 ],
328 "starships": [
329 "https://swapi.info/api/starships/10",
330 "https://swapi.info/api/starships/22"
331 ],
332 "created": "2014-12-10T16:42:45.066000Z",
333 "edited": "2014-12-20T21:17:50.332000Z",
334 "url": "https://swapi.info/api/people/13"
335 },
336 {
337 "name": "Han Solo",
338 "height": "180",
339 "mass": "80",
340 "hair_color": "brown",
341 "skin_color": "fair",
342 "eye_color": "brown",
343 "birth_year": "29BBY",
344 "gender": "male",
345 "homeworld": "https://swapi.info/api/planets/22",
346 "films": [
347 "https://swapi.info/api/films/1",
348 "https://swapi.info/api/films/2",
349 "https://swapi.info/api/films/3"
350 ],
351 "species": [],
352 "vehicles": [],
353 "starships": [
354 "https://swapi.info/api/starships/10",
355 "https://swapi.info/api/starships/22"
356 ],
357 "created": "2014-12-10T16:49:14.582000Z",
358 "edited": "2014-12-20T21:17:50.334000Z",
359 "url": "https://swapi.info/api/people/14"
360 },
361 {
362 "name": "Greedo",
363 "height": "173",
364 "mass": "74",
365 "hair_color": "n/a",
366 "skin_color": "green",
367 "eye_color": "black",
368 "birth_year": "44BBY",
369 "gender": "male",
370 "homeworld": "https://swapi.info/api/planets/23",
371 "films": [
372 "https://swapi.info/api/films/1"
373 ],
374 "species": [
375 "https://swapi.info/api/species/4"
376 ],
377 "vehicles": [],
378 "starships": [],
379 "created": "2014-12-10T17:03:30.334000Z",
380 "edited": "2014-12-20T21:17:50.336000Z",
381 "url": "https://swapi.info/api/people/15"
382 },
383 {
384 "name": "Jabba Desilijic Tiure",
385 "height": "175",
386 "mass": "1,358",
387 "hair_color": "n/a",
388 "skin_color": "green-tan, brown",
389 "eye_color": "orange",
390 "birth_year": "600BBY",
391 "gender": "hermaphrodite",
392 "homeworld": "https://swapi.info/api/planets/24",
393 "films": [
394 "https://swapi.info/api/films/1",
395 "https://swapi.info/api/films/3",
396 "https://swapi.info/api/films/4"
397 ],
398 "species": [
399 "https://swapi.info/api/species/5"
400 ],
401 "vehicles": [],
402 "starships": [],
403 "created": "2014-12-10T17:11:31.638000Z",
404 "edited": "2014-12-20T21:17:50.338000Z",
405 "url": "https://swapi.info/api/people/16"
406 },
407 {
408 "name": "Wedge Antilles",
409 "height": "170",
410 "mass": "77",
411 "hair_color": "brown",
412 "skin_color": "fair",
413 "eye_color": "hazel",
414 "birth_year": "21BBY",
415 "gender": "male",
416 "homeworld": "https://swapi.info/api/planets/22",
417 "films": [
418 "https://swapi.info/api/films/1",
419 "https://swapi.info/api/films/2",
420 "https://swapi.info/api/films/3"
421 ],
422 "species": [],
423 "vehicles": [
424 "https://swapi.info/api/vehicles/14"
425 ],
426 "starships": [
427 "https://swapi.info/api/starships/12"
428 ],
429 "created": "2014-12-12T11:08:06.469000Z",
430 "edited": "2014-12-20T21:17:50.341000Z",
431 "url": "https://swapi.info/api/people/18"
432 },
433 {
434 "name": "Jek Tono Porkins",
435 "height": "180",
436 "mass": "110",
437 "hair_color": "brown",
438 "skin_color": "fair",
439 "eye_color": "blue",
440 "birth_year": "unknown",
441 "gender": "male",
442 "homeworld": "https://swapi.info/api/planets/26",
443 "films": [
444 "https://swapi.info/api/films/1"
445 ],
446 "species": [],
447 "vehicles": [],
448 "starships": [
449 "https://swapi.info/api/starships/12"
450 ],
451 "created": "2014-12-12T11:16:56.569000Z",
452 "edited": "2014-12-20T21:17:50.343000Z",
453 "url": "https://swapi.info/api/people/19"
454 },
455 {
456 "name": "Yoda",
457 "height": "66",
458 "mass": "17",
459 "hair_color": "white",
460 "skin_color": "green",
461 "eye_color": "brown",
462 "birth_year": "896BBY",
463 "gender": "male",
464 "homeworld": "https://swapi.info/api/planets/28",
465 "films": [
466 "https://swapi.info/api/films/2",
467 "https://swapi.info/api/films/3",
468 "https://swapi.info/api/films/4",
469 "https://swapi.info/api/films/5",
470 "https://swapi.info/api/films/6"
471 ],
472 "species": [
473 "https://swapi.info/api/species/6"
474 ],
475 "vehicles": [],
476 "starships": [],
477 "created": "2014-12-15T12:26:01.042000Z",
478 "edited": "2014-12-20T21:17:50.345000Z",
479 "url": "https://swapi.info/api/people/20"
480 },
481 {
482 "name": "Palpatine",
483 "height": "170",
484 "mass": "75",
485 "hair_color": "grey",
486 "skin_color": "pale",
487 "eye_color": "yellow",
488 "birth_year": "82BBY",
489 "gender": "male",
490 "homeworld": "https://swapi.info/api/planets/8",
491 "films": [
492 "https://swapi.info/api/films/2",
493 "https://swapi.info/api/films/3",
494 "https://swapi.info/api/films/4",
495 "https://swapi.info/api/films/5",
496 "https://swapi.info/api/films/6"
497 ],
498 "species": [],
499 "vehicles": [],
500 "starships": [],
501 "created": "2014-12-15T12:48:05.971000Z",
502 "edited": "2014-12-20T21:17:50.347000Z",
503 "url": "https://swapi.info/api/people/21"
504 },
505 {
506 "name": "Boba Fett",
507 "height": "183",
508 "mass": "78.2",
509 "hair_color": "black",
510 "skin_color": "fair",
511 "eye_color": "brown",
512 "birth_year": "31.5BBY",
513 "gender": "male",
514 "homeworld": "https://swapi.info/api/planets/10",
515 "films": [
516 "https://swapi.info/api/films/2",
517 "https://swapi.info/api/films/3",
518 "https://swapi.info/api/films/5"
519 ],
520 "species": [],
521 "vehicles": [],
522 "starships": [
523 "https://swapi.info/api/starships/21"
524 ],
525 "created": "2014-12-15T12:49:32.457000Z",
526 "edited": "2014-12-20T21:17:50.349000Z",
527 "url": "https://swapi.info/api/people/22"
528 },
529 {
530 "name": "IG-88",
531 "height": "200",
532 "mass": "140",
533 "hair_color": "none",
534 "skin_color": "metal",
535 "eye_color": "red",
536 "birth_year": "15BBY",
537 "gender": "none",
538 "homeworld": "https://swapi.info/api/planets/28",
539 "films": [
540 "https://swapi.info/api/films/2"
541 ],
542 "species": [
543 "https://swapi.info/api/species/2"
544 ],
545 "vehicles": [],
546 "starships": [],
547 "created": "2014-12-15T12:51:10.076000Z",
548 "edited": "2014-12-20T21:17:50.351000Z",
549 "url": "https://swapi.info/api/people/23"
550 },
551 {
552 "name": "Bossk",
553 "height": "190",
554 "mass": "113",
555 "hair_color": "none",
556 "skin_color": "green",
557 "eye_color": "red",
558 "birth_year": "53BBY",
559 "gender": "male",
560 "homeworld": "https://swapi.info/api/planets/29",
561 "films": [
562 "https://swapi.info/api/films/2"
563 ],
564 "species": [
565 "https://swapi.info/api/species/7"
566 ],
567 "vehicles": [],
568 "starships": [],
569 "created": "2014-12-15T12:53:49.297000Z",
570 "edited": "2014-12-20T21:17:50.355000Z",
571 "url": "https://swapi.info/api/people/24"
572 },
573 {
574 "name": "Lando Calrissian",
575 "height": "177",
576 "mass": "79",
577 "hair_color": "black",
578 "skin_color": "dark",
579 "eye_color": "brown",
580 "birth_year": "31BBY",
581 "gender": "male",
582 "homeworld": "https://swapi.info/api/planets/30",
583 "films": [
584 "https://swapi.info/api/films/2",
585 "https://swapi.info/api/films/3"
586 ],
587 "species": [],
588 "vehicles": [],
589 "starships": [
590 "https://swapi.info/api/starships/10"
591 ],
592 "created": "2014-12-15T12:56:32.683000Z",
593 "edited": "2014-12-20T21:17:50.357000Z",
594 "url": "https://swapi.info/api/people/25"
595 },
596 {
597 "name": "Lobot",
598 "height": "175",
599 "mass": "79",
600 "hair_color": "none",
601 "skin_color": "light",
602 "eye_color": "blue",
603 "birth_year": "37BBY",
604 "gender": "male",
605 "homeworld": "https://swapi.info/api/planets/6",
606 "films": [
607 "https://swapi.info/api/films/2"
608 ],
609 "species": [],
610 "vehicles": [],
611 "starships": [],
612 "created": "2014-12-15T13:01:57.178000Z",
613 "edited": "2014-12-20T21:17:50.359000Z",
614 "url": "https://swapi.info/api/people/26"
615 },
616 {
617 "name": "Ackbar",
618 "height": "180",
619 "mass": "83",
620 "hair_color": "none",
621 "skin_color": "brown mottle",
622 "eye_color": "orange",
623 "birth_year": "41BBY",
624 "gender": "male",
625 "homeworld": "https://swapi.info/api/planets/31",
626 "films": [
627 "https://swapi.info/api/films/3"
628 ],
629 "species": [
630 "https://swapi.info/api/species/8"
631 ],
632 "vehicles": [],
633 "starships": [],
634 "created": "2014-12-18T11:07:50.584000Z",
635 "edited": "2014-12-20T21:17:50.362000Z",
636 "url": "https://swapi.info/api/people/27"
637 },
638 {
639 "name": "Mon Mothma",
640 "height": "150",
641 "mass": "unknown",
642 "hair_color": "auburn",
643 "skin_color": "fair",
644 "eye_color": "blue",
645 "birth_year": "48BBY",
646 "gender": "female",
647 "homeworld": "https://swapi.info/api/planets/32",
648 "films": [
649 "https://swapi.info/api/films/3"
650 ],
651 "species": [],
652 "vehicles": [],
653 "starships": [],
654 "created": "2014-12-18T11:12:38.895000Z",
655 "edited": "2014-12-20T21:17:50.364000Z",
656 "url": "https://swapi.info/api/people/28"
657 },
658 {
659 "name": "Arvel Crynyd",
660 "height": "unknown",
661 "mass": "unknown",
662 "hair_color": "brown",
663 "skin_color": "fair",
664 "eye_color": "brown",
665 "birth_year": "unknown",
666 "gender": "male",
667 "homeworld": "https://swapi.info/api/planets/28",
668 "films": [
669 "https://swapi.info/api/films/3"
670 ],
671 "species": [],
672 "vehicles": [],
673 "starships": [
674 "https://swapi.info/api/starships/28"
675 ],
676 "created": "2014-12-18T11:16:33.020000Z",
677 "edited": "2014-12-20T21:17:50.367000Z",
678 "url": "https://swapi.info/api/people/29"
679 },
680 {
681 "name": "Wicket Systri Warrick",
682 "height": "88",
683 "mass": "20",
684 "hair_color": "brown",
685 "skin_color": "brown",
686 "eye_color": "brown",
687 "birth_year": "8BBY",
688 "gender": "male",
689 "homeworld": "https://swapi.info/api/planets/7",
690 "films": [
691 "https://swapi.info/api/films/3"
692 ],
693 "species": [
694 "https://swapi.info/api/species/9"
695 ],
696 "vehicles": [],
697 "starships": [],
698 "created": "2014-12-18T11:21:58.954000Z",
699 "edited": "2014-12-20T21:17:50.369000Z",
700 "url": "https://swapi.info/api/people/30"
701 },
702 {
703 "name": "Nien Nunb",
704 "height": "160",
705 "mass": "68",
706 "hair_color": "none",
707 "skin_color": "grey",
708 "eye_color": "black",
709 "birth_year": "unknown",
710 "gender": "male",
711 "homeworld": "https://swapi.info/api/planets/33",
712 "films": [
713 "https://swapi.info/api/films/3"
714 ],
715 "species": [
716 "https://swapi.info/api/species/10"
717 ],
718 "vehicles": [],
719 "starships": [
720 "https://swapi.info/api/starships/10"
721 ],
722 "created": "2014-12-18T11:26:18.541000Z",
723 "edited": "2014-12-20T21:17:50.371000Z",
724 "url": "https://swapi.info/api/people/31"
725 },
726 {
727 "name": "Qui-Gon Jinn",
728 "height": "193",
729 "mass": "89",
730 "hair_color": "brown",
731 "skin_color": "fair",
732 "eye_color": "blue",
733 "birth_year": "92BBY",
734 "gender": "male",
735 "homeworld": "https://swapi.info/api/planets/28",
736 "films": [
737 "https://swapi.info/api/films/4"
738 ],
739 "species": [],
740 "vehicles": [
741 "https://swapi.info/api/vehicles/38"
742 ],
743 "starships": [],
744 "created": "2014-12-19T16:54:53.618000Z",
745 "edited": "2014-12-20T21:17:50.375000Z",
746 "url": "https://swapi.info/api/people/32"
747 },
748 {
749 "name": "Nute Gunray",
750 "height": "191",
751 "mass": "90",
752 "hair_color": "none",
753 "skin_color": "mottled green",
754 "eye_color": "red",
755 "birth_year": "unknown",
756 "gender": "male",
757 "homeworld": "https://swapi.info/api/planets/18",
758 "films": [
759 "https://swapi.info/api/films/4",
760 "https://swapi.info/api/films/5",
761 "https://swapi.info/api/films/6"
762 ],
763 "species": [
764 "https://swapi.info/api/species/11"
765 ],
766 "vehicles": [],
767 "starships": [],
768 "created": "2014-12-19T17:05:57.357000Z",
769 "edited": "2014-12-20T21:17:50.377000Z",
770 "url": "https://swapi.info/api/people/33"
771 },
772 {
773 "name": "Finis Valorum",
774 "height": "170",
775 "mass": "unknown",
776 "hair_color": "blond",
777 "skin_color": "fair",
778 "eye_color": "blue",
779 "birth_year": "91BBY",
780 "gender": "male",
781 "homeworld": "https://swapi.info/api/planets/9",
782 "films": [
783 "https://swapi.info/api/films/4"
784 ],
785 "species": [],
786 "vehicles": [],
787 "starships": [],
788 "created": "2014-12-19T17:21:45.915000Z",
789 "edited": "2014-12-20T21:17:50.379000Z",
790 "url": "https://swapi.info/api/people/34"
791 },
792 {
793 "name": "Padmé Amidala",
794 "height": "185",
795 "mass": "45",
796 "hair_color": "brown",
797 "skin_color": "light",
798 "eye_color": "brown",
799 "birth_year": "46BBY",
800 "gender": "female",
801 "homeworld": "https://swapi.info/api/planets/8",
802 "films": [
803 "https://swapi.info/api/films/4",
804 "https://swapi.info/api/films/5",
805 "https://swapi.info/api/films/6"
806 ],
807 "species": [],
808 "vehicles": [],
809 "starships": [
810 "https://swapi.info/api/starships/39",
811 "https://swapi.info/api/starships/49",
812 "https://swapi.info/api/starships/64"
813 ],
814 "created": "2014-12-19T17:28:26.926000Z",
815 "edited": "2014-12-20T21:17:50.381000Z",
816 "url": "https://swapi.info/api/people/35"
817 },
818 {
819 "name": "Jar Jar Binks",
820 "height": "196",
821 "mass": "66",
822 "hair_color": "none",
823 "skin_color": "orange",
824 "eye_color": "orange",
825 "birth_year": "52BBY",
826 "gender": "male",
827 "homeworld": "https://swapi.info/api/planets/8",
828 "films": [
829 "https://swapi.info/api/films/4",
830 "https://swapi.info/api/films/5"
831 ],
832 "species": [
833 "https://swapi.info/api/species/12"
834 ],
835 "vehicles": [],
836 "starships": [],
837 "created": "2014-12-19T17:29:32.489000Z",
838 "edited": "2014-12-20T21:17:50.383000Z",
839 "url": "https://swapi.info/api/people/36"
840 },
841 {
842 "name": "Roos Tarpals",
843 "height": "224",
844 "mass": "82",
845 "hair_color": "none",
846 "skin_color": "grey",
847 "eye_color": "orange",
848 "birth_year": "unknown",
849 "gender": "male",
850 "homeworld": "https://swapi.info/api/planets/8",
851 "films": [
852 "https://swapi.info/api/films/4"
853 ],
854 "species": [
855 "https://swapi.info/api/species/12"
856 ],
857 "vehicles": [],
858 "starships": [],
859 "created": "2014-12-19T17:32:56.741000Z",
860 "edited": "2014-12-20T21:17:50.385000Z",
861 "url": "https://swapi.info/api/people/37"
862 },
863 {
864 "name": "Rugor Nass",
865 "height": "206",
866 "mass": "unknown",
867 "hair_color": "none",
868 "skin_color": "green",
869 "eye_color": "orange",
870 "birth_year": "unknown",
871 "gender": "male",
872 "homeworld": "https://swapi.info/api/planets/8",
873 "films": [
874 "https://swapi.info/api/films/4"
875 ],
876 "species": [
877 "https://swapi.info/api/species/12"
878 ],
879 "vehicles": [],
880 "starships": [],
881 "created": "2014-12-19T17:33:38.909000Z",
882 "edited": "2014-12-20T21:17:50.388000Z",
883 "url": "https://swapi.info/api/people/38"
884 },
885 {
886 "name": "Ric Olié",
887 "height": "183",
888 "mass": "unknown",
889 "hair_color": "brown",
890 "skin_color": "fair",
891 "eye_color": "blue",
892 "birth_year": "unknown",
893 "gender": "male",
894 "homeworld": "https://swapi.info/api/planets/8",
895 "films": [
896 "https://swapi.info/api/films/4"
897 ],
898 "species": [],
899 "vehicles": [],
900 "starships": [
901 "https://swapi.info/api/starships/40"
902 ],
903 "created": "2014-12-19T17:45:01.522000Z",
904 "edited": "2014-12-20T21:17:50.392000Z",
905 "url": "https://swapi.info/api/people/39"
906 },
907 {
908 "name": "Watto",
909 "height": "137",
910 "mass": "unknown",
911 "hair_color": "black",
912 "skin_color": "blue, grey",
913 "eye_color": "yellow",
914 "birth_year": "unknown",
915 "gender": "male",
916 "homeworld": "https://swapi.info/api/planets/34",
917 "films": [
918 "https://swapi.info/api/films/4",
919 "https://swapi.info/api/films/5"
920 ],
921 "species": [
922 "https://swapi.info/api/species/13"
923 ],
924 "vehicles": [],
925 "starships": [],
926 "created": "2014-12-19T17:48:54.647000Z",
927 "edited": "2014-12-20T21:17:50.395000Z",
928 "url": "https://swapi.info/api/people/40"
929 },
930 {
931 "name": "Sebulba",
932 "height": "112",
933 "mass": "40",
934 "hair_color": "none",
935 "skin_color": "grey, red",
936 "eye_color": "orange",
937 "birth_year": "unknown",
938 "gender": "male",
939 "homeworld": "https://swapi.info/api/planets/35",
940 "films": [
941 "https://swapi.info/api/films/4"
942 ],
943 "species": [
944 "https://swapi.info/api/species/14"
945 ],
946 "vehicles": [],
947 "starships": [],
948 "created": "2014-12-19T17:53:02.586000Z",
949 "edited": "2014-12-20T21:17:50.397000Z",
950 "url": "https://swapi.info/api/people/41"
951 },
952 {
953 "name": "Quarsh Panaka",
954 "height": "183",
955 "mass": "unknown",
956 "hair_color": "black",
957 "skin_color": "dark",
958 "eye_color": "brown",
959 "birth_year": "62BBY",
960 "gender": "male",
961 "homeworld": "https://swapi.info/api/planets/8",
962 "films": [
963 "https://swapi.info/api/films/4"
964 ],
965 "species": [],
966 "vehicles": [],
967 "starships": [],
968 "created": "2014-12-19T17:55:43.348000Z",
969 "edited": "2014-12-20T21:17:50.399000Z",
970 "url": "https://swapi.info/api/people/42"
971 },
972 {
973 "name": "Shmi Skywalker",
974 "height": "163",
975 "mass": "unknown",
976 "hair_color": "black",
977 "skin_color": "fair",
978 "eye_color": "brown",
979 "birth_year": "72BBY",
980 "gender": "female",
981 "homeworld": "https://swapi.info/api/planets/1",
982 "films": [
983 "https://swapi.info/api/films/4",
984 "https://swapi.info/api/films/5"
985 ],
986 "species": [],
987 "vehicles": [],
988 "starships": [],
989 "created": "2014-12-19T17:57:41.191000Z",
990 "edited": "2014-12-20T21:17:50.401000Z",
991 "url": "https://swapi.info/api/people/43"
992 },
993 {
994 "name": "Darth Maul",
995 "height": "175",
996 "mass": "80",
997 "hair_color": "none",
998 "skin_color": "red",
999 "eye_color": "yellow",
1000 "birth_year": "54BBY",
1001 "gender": "male",
1002 "homeworld": "https://swapi.info/api/planets/36",
1003 "films": [
1004 "https://swapi.info/api/films/4"
1005 ],
1006 "species": [
1007 "https://swapi.info/api/species/22"
1008 ],
1009 "vehicles": [
1010 "https://swapi.info/api/vehicles/42"
1011 ],
1012 "starships": [
1013 "https://swapi.info/api/starships/41"
1014 ],
1015 "created": "2014-12-19T18:00:41.929000Z",
1016 "edited": "2014-12-20T21:17:50.403000Z",
1017 "url": "https://swapi.info/api/people/44"
1018 },
1019 {
1020 "name": "Bib Fortuna",
1021 "height": "180",
1022 "mass": "unknown",
1023 "hair_color": "none",
1024 "skin_color": "pale",
1025 "eye_color": "pink",
1026 "birth_year": "unknown",
1027 "gender": "male",
1028 "homeworld": "https://swapi.info/api/planets/37",
1029 "films": [
1030 "https://swapi.info/api/films/3"
1031 ],
1032 "species": [
1033 "https://swapi.info/api/species/15"
1034 ],
1035 "vehicles": [],
1036 "starships": [],
1037 "created": "2014-12-20T09:47:02.512000Z",
1038 "edited": "2014-12-20T21:17:50.407000Z",
1039 "url": "https://swapi.info/api/people/45"
1040 },
1041 {
1042 "name": "Ayla Secura",
1043 "height": "178",
1044 "mass": "55",
1045 "hair_color": "none",
1046 "skin_color": "blue",
1047 "eye_color": "hazel",
1048 "birth_year": "48BBY",
1049 "gender": "female",
1050 "homeworld": "https://swapi.info/api/planets/37",
1051 "films": [
1052 "https://swapi.info/api/films/4",
1053 "https://swapi.info/api/films/5",
1054 "https://swapi.info/api/films/6"
1055 ],
1056 "species": [
1057 "https://swapi.info/api/species/15"
1058 ],
1059 "vehicles": [],
1060 "starships": [],
1061 "created": "2014-12-20T09:48:01.172000Z",
1062 "edited": "2014-12-20T21:17:50.409000Z",
1063 "url": "https://swapi.info/api/people/46"
1064 },
1065 {
1066 "name": "Ratts Tyerel",
1067 "height": "79",
1068 "mass": "15",
1069 "hair_color": "none",
1070 "skin_color": "grey, blue",
1071 "eye_color": "unknown",
1072 "birth_year": "unknown",
1073 "gender": "male",
1074 "homeworld": "https://swapi.info/api/planets/38",
1075 "films": [
1076 "https://swapi.info/api/films/4"
1077 ],
1078 "species": [
1079 "https://swapi.info/api/species/16"
1080 ],
1081 "vehicles": [],
1082 "starships": [],
1083 "created": "2014-12-20T09:53:15.086000Z",
1084 "edited": "2014-12-20T21:17:50.410000Z",
1085 "url": "https://swapi.info/api/people/47"
1086 },
1087 {
1088 "name": "Dud Bolt",
1089 "height": "94",
1090 "mass": "45",
1091 "hair_color": "none",
1092 "skin_color": "blue, grey",
1093 "eye_color": "yellow",
1094 "birth_year": "unknown",
1095 "gender": "male",
1096 "homeworld": "https://swapi.info/api/planets/39",
1097 "films": [
1098 "https://swapi.info/api/films/4"
1099 ],
1100 "species": [
1101 "https://swapi.info/api/species/17"
1102 ],
1103 "vehicles": [],
1104 "starships": [],
1105 "created": "2014-12-20T09:57:31.858000Z",
1106 "edited": "2014-12-20T21:17:50.414000Z",
1107 "url": "https://swapi.info/api/people/48"
1108 },
1109 {
1110 "name": "Gasgano",
1111 "height": "122",
1112 "mass": "unknown",
1113 "hair_color": "none",
1114 "skin_color": "white, blue",
1115 "eye_color": "black",
1116 "birth_year": "unknown",
1117 "gender": "male",
1118 "homeworld": "https://swapi.info/api/planets/40",
1119 "films": [
1120 "https://swapi.info/api/films/4"
1121 ],
1122 "species": [
1123 "https://swapi.info/api/species/18"
1124 ],
1125 "vehicles": [],
1126 "starships": [],
1127 "created": "2014-12-20T10:02:12.223000Z",
1128 "edited": "2014-12-20T21:17:50.416000Z",
1129 "url": "https://swapi.info/api/people/49"
1130 },
1131 {
1132 "name": "Ben Quadinaros",
1133 "height": "163",
1134 "mass": "65",
1135 "hair_color": "none",
1136 "skin_color": "grey, green, yellow",
1137 "eye_color": "orange",
1138 "birth_year": "unknown",
1139 "gender": "male",
1140 "homeworld": "https://swapi.info/api/planets/41",
1141 "films": [
1142 "https://swapi.info/api/films/4"
1143 ],
1144 "species": [
1145 "https://swapi.info/api/species/19"
1146 ],
1147 "vehicles": [],
1148 "starships": [],
1149 "created": "2014-12-20T10:08:33.777000Z",
1150 "edited": "2014-12-20T21:17:50.417000Z",
1151 "url": "https://swapi.info/api/people/50"
1152 },
1153 {
1154 "name": "Mace Windu",
1155 "height": "188",
1156 "mass": "84",
1157 "hair_color": "none",
1158 "skin_color": "dark",
1159 "eye_color": "brown",
1160 "birth_year": "72BBY",
1161 "gender": "male",
1162 "homeworld": "https://swapi.info/api/planets/42",
1163 "films": [
1164 "https://swapi.info/api/films/4",
1165 "https://swapi.info/api/films/5",
1166 "https://swapi.info/api/films/6"
1167 ],
1168 "species": [],
1169 "vehicles": [],
1170 "starships": [],
1171 "created": "2014-12-20T10:12:30.846000Z",
1172 "edited": "2014-12-20T21:17:50.420000Z",
1173 "url": "https://swapi.info/api/people/51"
1174 },
1175 {
1176 "name": "Ki-Adi-Mundi",
1177 "height": "198",
1178 "mass": "82",
1179 "hair_color": "white",
1180 "skin_color": "pale",
1181 "eye_color": "yellow",
1182 "birth_year": "92BBY",
1183 "gender": "male",
1184 "homeworld": "https://swapi.info/api/planets/43",
1185 "films": [
1186 "https://swapi.info/api/films/4",
1187 "https://swapi.info/api/films/5",
1188 "https://swapi.info/api/films/6"
1189 ],
1190 "species": [
1191 "https://swapi.info/api/species/20"
1192 ],
1193 "vehicles": [],
1194 "starships": [],
1195 "created": "2014-12-20T10:15:32.293000Z",
1196 "edited": "2014-12-20T21:17:50.422000Z",
1197 "url": "https://swapi.info/api/people/52"
1198 },
1199 {
1200 "name": "Kit Fisto",
1201 "height": "196",
1202 "mass": "87",
1203 "hair_color": "none",
1204 "skin_color": "green",
1205 "eye_color": "black",
1206 "birth_year": "unknown",
1207 "gender": "male",
1208 "homeworld": "https://swapi.info/api/planets/44",
1209 "films": [
1210 "https://swapi.info/api/films/4",
1211 "https://swapi.info/api/films/5",
1212 "https://swapi.info/api/films/6"
1213 ],
1214 "species": [
1215 "https://swapi.info/api/species/21"
1216 ],
1217 "vehicles": [],
1218 "starships": [],
1219 "created": "2014-12-20T10:18:57.202000Z",
1220 "edited": "2014-12-20T21:17:50.424000Z",
1221 "url": "https://swapi.info/api/people/53"
1222 },
1223 {
1224 "name": "Eeth Koth",
1225 "height": "171",
1226 "mass": "unknown",
1227 "hair_color": "black",
1228 "skin_color": "brown",
1229 "eye_color": "brown",
1230 "birth_year": "unknown",
1231 "gender": "male",
1232 "homeworld": "https://swapi.info/api/planets/45",
1233 "films": [
1234 "https://swapi.info/api/films/4",
1235 "https://swapi.info/api/films/6"
1236 ],
1237 "species": [
1238 "https://swapi.info/api/species/22"
1239 ],
1240 "vehicles": [],
1241 "starships": [],
1242 "created": "2014-12-20T10:26:47.902000Z",
1243 "edited": "2014-12-20T21:17:50.427000Z",
1244 "url": "https://swapi.info/api/people/54"
1245 },
1246 {
1247 "name": "Adi Gallia",
1248 "height": "184",
1249 "mass": "50",
1250 "hair_color": "none",
1251 "skin_color": "dark",
1252 "eye_color": "blue",
1253 "birth_year": "unknown",
1254 "gender": "female",
1255 "homeworld": "https://swapi.info/api/planets/9",
1256 "films": [
1257 "https://swapi.info/api/films/4",
1258 "https://swapi.info/api/films/6"
1259 ],
1260 "species": [
1261 "https://swapi.info/api/species/23"
1262 ],
1263 "vehicles": [],
1264 "starships": [],
1265 "created": "2014-12-20T10:29:11.661000Z",
1266 "edited": "2014-12-20T21:17:50.432000Z",
1267 "url": "https://swapi.info/api/people/55"
1268 },
1269 {
1270 "name": "Saesee Tiin",
1271 "height": "188",
1272 "mass": "unknown",
1273 "hair_color": "none",
1274 "skin_color": "pale",
1275 "eye_color": "orange",
1276 "birth_year": "unknown",
1277 "gender": "male",
1278 "homeworld": "https://swapi.info/api/planets/47",
1279 "films": [
1280 "https://swapi.info/api/films/4",
1281 "https://swapi.info/api/films/6"
1282 ],
1283 "species": [
1284 "https://swapi.info/api/species/24"
1285 ],
1286 "vehicles": [],
1287 "starships": [],
1288 "created": "2014-12-20T10:32:11.669000Z",
1289 "edited": "2014-12-20T21:17:50.434000Z",
1290 "url": "https://swapi.info/api/people/56"
1291 },
1292 {
1293 "name": "Yarael Poof",
1294 "height": "264",
1295 "mass": "unknown",
1296 "hair_color": "none",
1297 "skin_color": "white",
1298 "eye_color": "yellow",
1299 "birth_year": "unknown",
1300 "gender": "male",
1301 "homeworld": "https://swapi.info/api/planets/48",
1302 "films": [
1303 "https://swapi.info/api/films/4"
1304 ],
1305 "species": [
1306 "https://swapi.info/api/species/25"
1307 ],
1308 "vehicles": [],
1309 "starships": [],
1310 "created": "2014-12-20T10:34:48.725000Z",
1311 "edited": "2014-12-20T21:17:50.437000Z",
1312 "url": "https://swapi.info/api/people/57"
1313 },
1314 {
1315 "name": "Plo Koon",
1316 "height": "188",
1317 "mass": "80",
1318 "hair_color": "none",
1319 "skin_color": "orange",
1320 "eye_color": "black",
1321 "birth_year": "22BBY",
1322 "gender": "male",
1323 "homeworld": "https://swapi.info/api/planets/49",
1324 "films": [
1325 "https://swapi.info/api/films/4",
1326 "https://swapi.info/api/films/5",
1327 "https://swapi.info/api/films/6"
1328 ],
1329 "species": [
1330 "https://swapi.info/api/species/26"
1331 ],
1332 "vehicles": [],
1333 "starships": [
1334 "https://swapi.info/api/starships/48"
1335 ],
1336 "created": "2014-12-20T10:49:19.859000Z",
1337 "edited": "2014-12-20T21:17:50.439000Z",
1338 "url": "https://swapi.info/api/people/58"
1339 },
1340 {
1341 "name": "Mas Amedda",
1342 "height": "196",
1343 "mass": "unknown",
1344 "hair_color": "none",
1345 "skin_color": "blue",
1346 "eye_color": "blue",
1347 "birth_year": "unknown",
1348 "gender": "male",
1349 "homeworld": "https://swapi.info/api/planets/50",
1350 "films": [
1351 "https://swapi.info/api/films/4",
1352 "https://swapi.info/api/films/5"
1353 ],
1354 "species": [
1355 "https://swapi.info/api/species/27"
1356 ],
1357 "vehicles": [],
1358 "starships": [],
1359 "created": "2014-12-20T10:53:26.457000Z",
1360 "edited": "2014-12-20T21:17:50.442000Z",
1361 "url": "https://swapi.info/api/people/59"
1362 },
1363 {
1364 "name": "Gregar Typho",
1365 "height": "185",
1366 "mass": "85",
1367 "hair_color": "black",
1368 "skin_color": "dark",
1369 "eye_color": "brown",
1370 "birth_year": "unknown",
1371 "gender": "male",
1372 "homeworld": "https://swapi.info/api/planets/8",
1373 "films": [
1374 "https://swapi.info/api/films/5"
1375 ],
1376 "species": [],
1377 "vehicles": [],
1378 "starships": [
1379 "https://swapi.info/api/starships/39"
1380 ],
1381 "created": "2014-12-20T11:10:10.381000Z",
1382 "edited": "2014-12-20T21:17:50.445000Z",
1383 "url": "https://swapi.info/api/people/60"
1384 },
1385 {
1386 "name": "Cordé",
1387 "height": "157",
1388 "mass": "unknown",
1389 "hair_color": "brown",
1390 "skin_color": "light",
1391 "eye_color": "brown",
1392 "birth_year": "unknown",
1393 "gender": "female",
1394 "homeworld": "https://swapi.info/api/planets/8",
1395 "films": [
1396 "https://swapi.info/api/films/5"
1397 ],
1398 "species": [],
1399 "vehicles": [],
1400 "starships": [],
1401 "created": "2014-12-20T11:11:39.630000Z",
1402 "edited": "2014-12-20T21:17:50.449000Z",
1403 "url": "https://swapi.info/api/people/61"
1404 },
1405 {
1406 "name": "Cliegg Lars",
1407 "height": "183",
1408 "mass": "unknown",
1409 "hair_color": "brown",
1410 "skin_color": "fair",
1411 "eye_color": "blue",
1412 "birth_year": "82BBY",
1413 "gender": "male",
1414 "homeworld": "https://swapi.info/api/planets/1",
1415 "films": [
1416 "https://swapi.info/api/films/5"
1417 ],
1418 "species": [],
1419 "vehicles": [],
1420 "starships": [],
1421 "created": "2014-12-20T15:59:03.958000Z",
1422 "edited": "2014-12-20T21:17:50.451000Z",
1423 "url": "https://swapi.info/api/people/62"
1424 },
1425 {
1426 "name": "Poggle the Lesser",
1427 "height": "183",
1428 "mass": "80",
1429 "hair_color": "none",
1430 "skin_color": "green",
1431 "eye_color": "yellow",
1432 "birth_year": "unknown",
1433 "gender": "male",
1434 "homeworld": "https://swapi.info/api/planets/11",
1435 "films": [
1436 "https://swapi.info/api/films/5",
1437 "https://swapi.info/api/films/6"
1438 ],
1439 "species": [
1440 "https://swapi.info/api/species/28"
1441 ],
1442 "vehicles": [],
1443 "starships": [],
1444 "created": "2014-12-20T16:40:43.977000Z",
1445 "edited": "2014-12-20T21:17:50.453000Z",
1446 "url": "https://swapi.info/api/people/63"
1447 },
1448 {
1449 "name": "Luminara Unduli",
1450 "height": "170",
1451 "mass": "56.2",
1452 "hair_color": "black",
1453 "skin_color": "yellow",
1454 "eye_color": "blue",
1455 "birth_year": "58BBY",
1456 "gender": "female",
1457 "homeworld": "https://swapi.info/api/planets/51",
1458 "films": [
1459 "https://swapi.info/api/films/5",
1460 "https://swapi.info/api/films/6"
1461 ],
1462 "species": [
1463 "https://swapi.info/api/species/29"
1464 ],
1465 "vehicles": [],
1466 "starships": [],
1467 "created": "2014-12-20T16:45:53.668000Z",
1468 "edited": "2014-12-20T21:17:50.455000Z",
1469 "url": "https://swapi.info/api/people/64"
1470 },
1471 {
1472 "name": "Barriss Offee",
1473 "height": "166",
1474 "mass": "50",
1475 "hair_color": "black",
1476 "skin_color": "yellow",
1477 "eye_color": "blue",
1478 "birth_year": "40BBY",
1479 "gender": "female",
1480 "homeworld": "https://swapi.info/api/planets/51",
1481 "films": [
1482 "https://swapi.info/api/films/5"
1483 ],
1484 "species": [
1485 "https://swapi.info/api/species/29"
1486 ],
1487 "vehicles": [],
1488 "starships": [],
1489 "created": "2014-12-20T16:46:40.440000Z",
1490 "edited": "2014-12-20T21:17:50.457000Z",
1491 "url": "https://swapi.info/api/people/65"
1492 },
1493 {
1494 "name": "Dormé",
1495 "height": "165",
1496 "mass": "unknown",
1497 "hair_color": "brown",
1498 "skin_color": "light",
1499 "eye_color": "brown",
1500 "birth_year": "unknown",
1501 "gender": "female",
1502 "homeworld": "https://swapi.info/api/planets/8",
1503 "films": [
1504 "https://swapi.info/api/films/5"
1505 ],
1506 "species": [
1507 "https://swapi.info/api/species/1"
1508 ],
1509 "vehicles": [],
1510 "starships": [],
1511 "created": "2014-12-20T16:49:14.640000Z",
1512 "edited": "2014-12-20T21:17:50.460000Z",
1513 "url": "https://swapi.info/api/people/66"
1514 },
1515 {
1516 "name": "Dooku",
1517 "height": "193",
1518 "mass": "80",
1519 "hair_color": "white",
1520 "skin_color": "fair",
1521 "eye_color": "brown",
1522 "birth_year": "102BBY",
1523 "gender": "male",
1524 "homeworld": "https://swapi.info/api/planets/52",
1525 "films": [
1526 "https://swapi.info/api/films/5",
1527 "https://swapi.info/api/films/6"
1528 ],
1529 "species": [
1530 "https://swapi.info/api/species/1"
1531 ],
1532 "vehicles": [
1533 "https://swapi.info/api/vehicles/55"
1534 ],
1535 "starships": [],
1536 "created": "2014-12-20T16:52:14.726000Z",
1537 "edited": "2014-12-20T21:17:50.462000Z",
1538 "url": "https://swapi.info/api/people/67"
1539 },
1540 {
1541 "name": "Bail Prestor Organa",
1542 "height": "191",
1543 "mass": "unknown",
1544 "hair_color": "black",
1545 "skin_color": "tan",
1546 "eye_color": "brown",
1547 "birth_year": "67BBY",
1548 "gender": "male",
1549 "homeworld": "https://swapi.info/api/planets/2",
1550 "films": [
1551 "https://swapi.info/api/films/5",
1552 "https://swapi.info/api/films/6"
1553 ],
1554 "species": [
1555 "https://swapi.info/api/species/1"
1556 ],
1557 "vehicles": [],
1558 "starships": [],
1559 "created": "2014-12-20T16:53:08.575000Z",
1560 "edited": "2014-12-20T21:17:50.463000Z",
1561 "url": "https://swapi.info/api/people/68"
1562 },
1563 {
1564 "name": "Jango Fett",
1565 "height": "183",
1566 "mass": "79",
1567 "hair_color": "black",
1568 "skin_color": "tan",
1569 "eye_color": "brown",
1570 "birth_year": "66BBY",
1571 "gender": "male",
1572 "homeworld": "https://swapi.info/api/planets/53",
1573 "films": [
1574 "https://swapi.info/api/films/5"
1575 ],
1576 "species": [],
1577 "vehicles": [],
1578 "starships": [],
1579 "created": "2014-12-20T16:54:41.620000Z",
1580 "edited": "2014-12-20T21:17:50.465000Z",
1581 "url": "https://swapi.info/api/people/69"
1582 },
1583 {
1584 "name": "Zam Wesell",
1585 "height": "168",
1586 "mass": "55",
1587 "hair_color": "blonde",
1588 "skin_color": "fair, green, yellow",
1589 "eye_color": "yellow",
1590 "birth_year": "unknown",
1591 "gender": "female",
1592 "homeworld": "https://swapi.info/api/planets/54",
1593 "films": [
1594 "https://swapi.info/api/films/5"
1595 ],
1596 "species": [
1597 "https://swapi.info/api/species/30"
1598 ],
1599 "vehicles": [
1600 "https://swapi.info/api/vehicles/45"
1601 ],
1602 "starships": [],
1603 "created": "2014-12-20T16:57:44.471000Z",
1604 "edited": "2014-12-20T21:17:50.468000Z",
1605 "url": "https://swapi.info/api/people/70"
1606 },
1607 {
1608 "name": "Dexter Jettster",
1609 "height": "198",
1610 "mass": "102",
1611 "hair_color": "none",
1612 "skin_color": "brown",
1613 "eye_color": "yellow",
1614 "birth_year": "unknown",
1615 "gender": "male",
1616 "homeworld": "https://swapi.info/api/planets/55",
1617 "films": [
1618 "https://swapi.info/api/films/5"
1619 ],
1620 "species": [
1621 "https://swapi.info/api/species/31"
1622 ],
1623 "vehicles": [],
1624 "starships": [],
1625 "created": "2014-12-20T17:28:27.248000Z",
1626 "edited": "2014-12-20T21:17:50.470000Z",
1627 "url": "https://swapi.info/api/people/71"
1628 },
1629 {
1630 "name": "Lama Su",
1631 "height": "229",
1632 "mass": "88",
1633 "hair_color": "none",
1634 "skin_color": "grey",
1635 "eye_color": "black",
1636 "birth_year": "unknown",
1637 "gender": "male",
1638 "homeworld": "https://swapi.info/api/planets/10",
1639 "films": [
1640 "https://swapi.info/api/films/5"
1641 ],
1642 "species": [
1643 "https://swapi.info/api/species/32"
1644 ],
1645 "vehicles": [],
1646 "starships": [],
1647 "created": "2014-12-20T17:30:50.416000Z",
1648 "edited": "2014-12-20T21:17:50.473000Z",
1649 "url": "https://swapi.info/api/people/72"
1650 },
1651 {
1652 "name": "Taun We",
1653 "height": "213",
1654 "mass": "unknown",
1655 "hair_color": "none",
1656 "skin_color": "grey",
1657 "eye_color": "black",
1658 "birth_year": "unknown",
1659 "gender": "female",
1660 "homeworld": "https://swapi.info/api/planets/10",
1661 "films": [
1662 "https://swapi.info/api/films/5"
1663 ],
1664 "species": [
1665 "https://swapi.info/api/species/32"
1666 ],
1667 "vehicles": [],
1668 "starships": [],
1669 "created": "2014-12-20T17:31:21.195000Z",
1670 "edited": "2014-12-20T21:17:50.474000Z",
1671 "url": "https://swapi.info/api/people/73"
1672 },
1673 {
1674 "name": "Jocasta Nu",
1675 "height": "167",
1676 "mass": "unknown",
1677 "hair_color": "white",
1678 "skin_color": "fair",
1679 "eye_color": "blue",
1680 "birth_year": "unknown",
1681 "gender": "female",
1682 "homeworld": "https://swapi.info/api/planets/9",
1683 "films": [
1684 "https://swapi.info/api/films/5"
1685 ],
1686 "species": [
1687 "https://swapi.info/api/species/1"
1688 ],
1689 "vehicles": [],
1690 "starships": [],
1691 "created": "2014-12-20T17:32:51.996000Z",
1692 "edited": "2014-12-20T21:17:50.476000Z",
1693 "url": "https://swapi.info/api/people/74"
1694 },
1695 {
1696 "name": "R4-P17",
1697 "height": "96",
1698 "mass": "unknown",
1699 "hair_color": "none",
1700 "skin_color": "silver, red",
1701 "eye_color": "red, blue",
1702 "birth_year": "unknown",
1703 "gender": "female",
1704 "homeworld": "https://swapi.info/api/planets/28",
1705 "films": [
1706 "https://swapi.info/api/films/5",
1707 "https://swapi.info/api/films/6"
1708 ],
1709 "species": [],
1710 "vehicles": [],
1711 "starships": [],
1712 "created": "2014-12-20T17:43:36.409000Z",
1713 "edited": "2014-12-20T21:17:50.478000Z",
1714 "url": "https://swapi.info/api/people/75"
1715 },
1716 {
1717 "name": "Wat Tambor",
1718 "height": "193",
1719 "mass": "48",
1720 "hair_color": "none",
1721 "skin_color": "green, grey",
1722 "eye_color": "unknown",
1723 "birth_year": "unknown",
1724 "gender": "male",
1725 "homeworld": "https://swapi.info/api/planets/56",
1726 "films": [
1727 "https://swapi.info/api/films/5"
1728 ],
1729 "species": [
1730 "https://swapi.info/api/species/33"
1731 ],
1732 "vehicles": [],
1733 "starships": [],
1734 "created": "2014-12-20T17:53:52.607000Z",
1735 "edited": "2014-12-20T21:17:50.481000Z",
1736 "url": "https://swapi.info/api/people/76"
1737 },
1738 {
1739 "name": "San Hill",
1740 "height": "191",
1741 "mass": "unknown",
1742 "hair_color": "none",
1743 "skin_color": "grey",
1744 "eye_color": "gold",
1745 "birth_year": "unknown",
1746 "gender": "male",
1747 "homeworld": "https://swapi.info/api/planets/57",
1748 "films": [
1749 "https://swapi.info/api/films/5"
1750 ],
1751 "species": [
1752 "https://swapi.info/api/species/34"
1753 ],
1754 "vehicles": [],
1755 "starships": [],
1756 "created": "2014-12-20T17:58:17.049000Z",
1757 "edited": "2014-12-20T21:17:50.484000Z",
1758 "url": "https://swapi.info/api/people/77"
1759 },
1760 {
1761 "name": "Shaak Ti",
1762 "height": "178",
1763 "mass": "57",
1764 "hair_color": "none",
1765 "skin_color": "red, blue, white",
1766 "eye_color": "black",
1767 "birth_year": "unknown",
1768 "gender": "female",
1769 "homeworld": "https://swapi.info/api/planets/58",
1770 "films": [
1771 "https://swapi.info/api/films/5",
1772 "https://swapi.info/api/films/6"
1773 ],
1774 "species": [
1775 "https://swapi.info/api/species/35"
1776 ],
1777 "vehicles": [],
1778 "starships": [],
1779 "created": "2014-12-20T18:44:01.103000Z",
1780 "edited": "2014-12-20T21:17:50.486000Z",
1781 "url": "https://swapi.info/api/people/78"
1782 },
1783 {
1784 "name": "Grievous",
1785 "height": "216",
1786 "mass": "159",
1787 "hair_color": "none",
1788 "skin_color": "brown, white",
1789 "eye_color": "green, yellow",
1790 "birth_year": "unknown",
1791 "gender": "male",
1792 "homeworld": "https://swapi.info/api/planets/59",
1793 "films": [
1794 "https://swapi.info/api/films/6"
1795 ],
1796 "species": [
1797 "https://swapi.info/api/species/36"
1798 ],
1799 "vehicles": [
1800 "https://swapi.info/api/vehicles/60"
1801 ],
1802 "starships": [
1803 "https://swapi.info/api/starships/74"
1804 ],
1805 "created": "2014-12-20T19:43:53.348000Z",
1806 "edited": "2014-12-20T21:17:50.488000Z",
1807 "url": "https://swapi.info/api/people/79"
1808 },
1809 {
1810 "name": "Tarfful",
1811 "height": "234",
1812 "mass": "136",
1813 "hair_color": "brown",
1814 "skin_color": "brown",
1815 "eye_color": "blue",
1816 "birth_year": "unknown",
1817 "gender": "male",
1818 "homeworld": "https://swapi.info/api/planets/14",
1819 "films": [
1820 "https://swapi.info/api/films/6"
1821 ],
1822 "species": [
1823 "https://swapi.info/api/species/3"
1824 ],
1825 "vehicles": [],
1826 "starships": [],
1827 "created": "2014-12-20T19:46:34.209000Z",
1828 "edited": "2014-12-20T21:17:50.491000Z",
1829 "url": "https://swapi.info/api/people/80"
1830 },
1831 {
1832 "name": "Raymus Antilles",
1833 "height": "188",
1834 "mass": "79",
1835 "hair_color": "brown",
1836 "skin_color": "light",
1837 "eye_color": "brown",
1838 "birth_year": "unknown",
1839 "gender": "male",
1840 "homeworld": "https://swapi.info/api/planets/2",
1841 "films": [
1842 "https://swapi.info/api/films/1",
1843 "https://swapi.info/api/films/6"
1844 ],
1845 "species": [],
1846 "vehicles": [],
1847 "starships": [],
1848 "created": "2014-12-20T19:49:35.583000Z",
1849 "edited": "2014-12-20T21:17:50.493000Z",
1850 "url": "https://swapi.info/api/people/81"
1851 },
1852 {
1853 "name": "Sly Moore",
1854 "height": "178",
1855 "mass": "48",
1856 "hair_color": "none",
1857 "skin_color": "pale",
1858 "eye_color": "white",
1859 "birth_year": "unknown",
1860 "gender": "female",
1861 "homeworld": "https://swapi.info/api/planets/60",
1862 "films": [
1863 "https://swapi.info/api/films/5",
1864 "https://swapi.info/api/films/6"
1865 ],
1866 "species": [],
1867 "vehicles": [],
1868 "starships": [],
1869 "created": "2014-12-20T20:18:37.619000Z",
1870 "edited": "2014-12-20T21:17:50.496000Z",
1871 "url": "https://swapi.info/api/people/82"
1872 },
1873 {
1874 "name": "Tion Medon",
1875 "height": "206",
1876 "mass": "80",
1877 "hair_color": "none",
1878 "skin_color": "grey",
1879 "eye_color": "black",
1880 "birth_year": "unknown",
1881 "gender": "male",
1882 "homeworld": "https://swapi.info/api/planets/12",
1883 "films": [
1884 "https://swapi.info/api/films/6"
1885 ],
1886 "species": [
1887 "https://swapi.info/api/species/37"
1888 ],
1889 "vehicles": [],
1890 "starships": [],
1891 "created": "2014-12-20T20:35:04.260000Z",
1892 "edited": "2014-12-20T21:17:50.498000Z",
1893 "url": "https://swapi.info/api/people/83"
1894 }
1895]

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.