-
Notifications
You must be signed in to change notification settings - Fork 81
/
search.json
7256 lines (7256 loc) · 206 KB
/
search.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"url": "https://www.ebay.com/itm/125654726090",
"title": "Apple iPhone SE 1st Gen. - 16/32/64/128GB - ALL COLORS Unlocked/AT&T/T-Mobile",
"price": "$52.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/eWIAAOSw0RxmRr4z/s-l500.webp",
"rating": 5.0,
"rating_count": 14
},
{
"url": "https://www.ebay.com/itm/145584750897",
"title": "Apple iPhone 6S Plus 16GB 32GB 64GB 128GB Unlocked AT&T T-Mobile Verizon",
"price": "$69.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Free 2 Day Shipping!"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/M9AAAOSw2HNludrn/s-l500.webp",
"rating": 5.0,
"rating_count": 30
},
{
"url": "https://www.ebay.com/itm/156367218609",
"title": "New Listing",
"price": "$100.00",
"shipping": 6.79,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone",
"16 GB",
"Unlocked"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/WnQAAOSwb7dmw~6v/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/145630460987",
"title": "Apple iPhone 6 16GB 32GB 64GB 128GB Unlocked AT&T T-Mobile Verizon Smartphone",
"price": "$52.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Free 2 Day Shipping!"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/ojUAAOSwh0hluC5s/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/166926815628",
"title": "Unlocked Apple iPhone 6 - 16GB - iOS - 4G LTE Smartphone",
"price": "$38.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/RAIAAOSwTzxmxOrA/s-l140.webp",
"rating": 4.5,
"rating_count": 153
},
{
"url": "https://www.ebay.com/itm/126435608547",
"title": "Working well Apple iPhone 5 5c 5s 8/16/32/64GB All colours Fully UNLOCKED Good!!",
"price": "$28.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Open Box",
"photo": "https://i.ebayimg.com/images/g/ugYAAOSwywhmIh~~/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/126398938042",
"title": "Apple iPhone 6 - 16GB 32GB 64GB 128GB - Gray Gold Silver Unlocked AT&T T-Mobile",
"price": "$48.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/E34AAOSwbT1mRrxz/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/126300999574",
"title": "Apple iPhone 6s Plus - 16GB 32GB 64GB 128GB - ALL COLORS Unlocked/AT&T/T-Mobile",
"price": "$64.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/JZ4AAOSwJ-xmeZAX/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/125654714303",
"title": "Apple iPhone 5s - 16/32/64GB - ALL COLORS Unlocked/AT&T/T-Mobile A1453",
"price": "$29.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/uj4AAOSw8X1jkqCg/s-l140.webp",
"rating": 4.5,
"rating_count": 53
},
{
"url": "https://www.ebay.com/itm/126387599441",
"title": "Apple iPhone 6s - 16GB 32GB 64GB 128GB - ALL COLORS Unlocked AT&T Verizon A1688",
"price": "$57.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/v9UAAOSwZ55mRr0b/s-l140.webp",
"rating": 4.5,
"rating_count": 96
},
{
"url": "https://www.ebay.com/itm/145653607831",
"title": "Apple iPhone 6 Plus Unlocked 16GB 64GB 128GB AT&T T-Mobile Verizon Smartphone",
"price": "$59.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Free 2 Day Shipping!"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/aZAAAOSw4MBlznTA/s-l140.webp",
"rating": 4.5,
"rating_count": 47
},
{
"url": "https://www.ebay.com/itm/126329207814",
"title": "Apple iPhone 5c - 8GB 16GB 32GB - ALL COLORS Unlocked AT&T T-Mobile",
"price": "$33.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/Sf0AAOSwVz9lyosI/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/155611329818",
"title": "85% N ew Apple iPhone 4 4S 8GB 16GB 32GB Unlocked Black White Fully working",
"price": "$29.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/B78AAOSwo3Vki9Py/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/145629335410",
"title": "Apple iPhone 6S Unlocked 16GB 32GB 64GB 128GB AT&T T-Mobile Verizon Smartphone",
"price": "$59.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Free 2-Day Shipping!"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/dCIAAOSwQKplrv76/s-l140.webp",
"rating": 4.5,
"rating_count": 29
},
{
"url": "https://www.ebay.com/itm/166852560428",
"title": "Apple iPhone 6 - 16GB Space Gray AT&T (iOS 8.3)",
"price": "$99.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 6",
"16 GB",
"AT&T"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/Mh8AAOSwC1dmhWK4/s-l140.webp",
"rating": 4.5,
"rating_count": 436
},
{
"url": "https://www.ebay.com/itm/202444662305",
"title": "Apple iPhone 6 16GB 64GB 128GB Unlocked SmartPhone AT&T T-mobile Verizon Good",
"price": "$52.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Good - Refurbished",
"photo": "https://i.ebayimg.com/images/g/SmEAAOSwiqNbpRiO/s-l140.webp",
"rating": 4.5,
"rating_count": 153
},
{
"url": "https://www.ebay.com/itm/375605337245",
"title": "New Listing",
"price": "$40.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 6s",
"16 GB",
"Unlocked"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/1vIAAOSwiX9mxnxs/s-l140.webp",
"rating": 4.5,
"rating_count": 96
},
{
"url": "https://www.ebay.com/itm/126556056045",
"title": "Apple iPhone SE 1st gen(2016)16/32/64/128GB Fully UNLOCKED Gray/Silver/Gold/Pink",
"price": "$65.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Open Box",
"photo": "https://i.ebayimg.com/images/g/JbYAAOSwPMZmgreM/s-l140.webp",
"rating": 4.5,
"rating_count": 272
},
{
"url": "https://www.ebay.com/itm/335540303450",
"title": "New Listing",
"price": "$14.95",
"shipping": 5.73,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 3G",
"16 GB",
"Unlocked"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/D1sAAOSwX8tmxfon/s-l140.webp",
"rating": 4.0,
"rating_count": 225
},
{
"url": "https://www.ebay.com/itm/126120586381",
"title": "Apple iPhone 5 - 16/32/64GB - ALL COLORS Unlocked/AT&T/Sprint A1429",
"price": "$30.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/v3gAAOSwOnxlG0fP/s-l140.webp",
"rating": 4.5,
"rating_count": 23
},
{
"url": "https://www.ebay.com/itm/116293100467",
"title": "iOS 7 (7.0.4) Apple iPhone 5S - JAILBROKEN - 16GB Gold",
"price": "$162.00",
"shipping": 8.6,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/xd8AAOSw-oxmwBJ6/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/156112960182",
"title": "Fully working Apple iphone 4 4S 8GB/16GB/32GB 64GB white black unlocked",
"price": "$28.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/2dMAAOSw5QJmBiXo/s-l140.webp",
"rating": 4.5,
"rating_count": 557
},
{
"url": "https://www.ebay.com/itm/155717085108",
"title": "Fully Working Apple iphone 2g 1st generation unlocked 4GB 8GB 16GB Rare IOS 1.0",
"price": "$98.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/ExEAAOSwo2RkNk48/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/256609317061",
"title": "Apple iPhone 3GS - 16GB - A1303 (GSM) IMEI: 012153008834874",
"price": "$27.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 3GS",
"16 GB",
"AT&T"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/eTsAAOSwolNmw6WM/s-l140.webp",
"rating": 4.5,
"rating_count": 82
},
{
"url": "https://www.ebay.com/itm/335535613239",
"title": "For Parts - Lot of 10 Good Apple iPhone 6 16GB Verizon A1549 Gray",
"price": "$79.87",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 6",
"16 GB",
"Verizon"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/Nw4AAOSwW1xmwWIB/s-l140.webp",
"rating": 4.5,
"rating_count": 569
},
{
"url": "https://www.ebay.com/itm/196571941888",
"title": "24 HOUR SALE ONLY- Lot Of 7 iPhones",
"price": "$99.00",
"shipping": 8.44,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone",
"16 GB",
"Unlocked"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/Gq0AAOSw00xmxMdN/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/144228494862",
"title": "Fair Condition Apple iPhone 5S 16GB /32GB /64Gb-AT&T Unlocked",
"price": "$23.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"\u2705 SHIP SAME DAY \u2705 TRUSTED BUSINESS SELLER \u2705 FREE RETURN"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/KJ4AAOSwUtZhJwKo/s-l140.webp",
"rating": 4.5,
"rating_count": 74
},
{
"url": "https://www.ebay.com/itm/164412257247",
"title": "Mint Condition Apple iPhone 5S 16GB /32GB for WIFI only",
"price": "$25.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"\u2705 SHIP SAME DAY \u2705 TRUSTED BUSINESS SELLER \u2705 FREE RETURN"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/zMEAAOSwXSZeRedu/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/404833348274",
"title": "*NEW SEALED* Apple Verizon iPhone 6s Plus 5.5\" 16/64/128GB UNLOCKED Smartphone",
"price": "$141.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Brand New",
"photo": "https://i.ebayimg.com/images/g/xkkAAOSwtxll4nZG/s-l140.webp",
"rating": 4.5,
"rating_count": 37
},
{
"url": "https://www.ebay.com/itm/355972392585",
"title": "Apple iPhone 5 A1428 16GB 4.0\" Black & Slate UNLOCKED",
"price": "$25.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 5",
"16 GB",
"Unlocked"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/1D8AAOSw4T9ms~RJ/s-l140.webp",
"rating": 4.5,
"rating_count": 583
},
{
"url": "https://www.ebay.com/itm/125804984552",
"title": "Apple iPhone 6 Plus - 16GB 64GB 128GB- ALL COLORS Unlocked AT&T T-Mobile",
"price": "$53.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/qwkAAOSw6FxmeY-b/s-l140.webp",
"rating": 4.5,
"rating_count": 46
},
{
"url": "https://www.ebay.com/itm/387083073844",
"title": "Apple iPhone 6 plus/6s Plus 16GB 128GB All Colors Unlocked Verizon Tmobile LTE",
"price": "$52.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/PRYAAOSwKxVmaw4A/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/186640289461",
"title": "Apple iPhone 5s 16 GB Space Gray",
"price": "$70.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Open Box",
"photo": "https://i.ebayimg.com/images/g/c7YAAOSwgjhmwo62/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/323431647262",
"title": "Apple iPhone 6 16GB 64GB 128GB Factory Unlocked SmartPhone AT&T T-mobile Verizon",
"price": "$58.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Open Box",
"photo": "https://i.ebayimg.com/images/g/BMkAAOSw4cBbkDlq/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/315678512321",
"title": "Apple iPhone SE 2016 4\" 16GB Verizon iOS 13.1.2 Space Gray MLLY2LL/A",
"price": "$49.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/zJ8AAOSwI8RmwfrA/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/354765432042",
"title": "Apple iPhone 6S Fully Unlocked (Any Carrier) 16GB 32GB 64GB 128GB Very Good",
"price": "$64.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Very Good - Refurbished",
"photo": "https://i.ebayimg.com/images/g/7V8AAOSwl3xbtlmE/s-l140.webp",
"rating": 4.5,
"rating_count": 86
},
{
"url": "https://www.ebay.com/itm/186640307720",
"title": "Apple iPhone 5 A1429 Verizon Wireless 16GB Black",
"price": "$30.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 5",
"16 GB",
"Verizon"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/QKwAAOSw7F9mwpFi/s-l140.webp",
"rating": 4.5,
"rating_count": 303
},
{
"url": "https://www.ebay.com/itm/256610360296",
"title": "Lot Of 4 iPhones. 3 Qty iPhone 8 64Gb Unlocked And 1 Qty 6 Plus 16gb Unlocked E1",
"price": "$17.50",
"shipping": 7.99,
"auction_end": "2024-08-27T12:49:00",
"bids": 2,
"location": null,
"subtitles": [
"Apple iPhone 8",
"64 GB",
"Unlocked"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/-f4AAOSwSyRmxPII/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/386982764643",
"title": "Apple iPhone 6 Plus 16GB 64GB Unlocked Verizon T-Mobile All Colors Smartphone",
"price": "$51.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/BTcAAOSwJfRmN6rh/s-l140.webp",
"rating": 4.0,
"rating_count": 62
},
{
"url": "https://www.ebay.com/itm/386982774587",
"title": "Apple iPhone 6s 16GB 32GB 64GB 128GB T-Mobile Unlocked Verizon AT&T Clean ESN",
"price": "$45.00",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/DiQAAOSwxcFmN61t/s-l140.webp",
"rating": 4.5,
"rating_count": 96
},
{
"url": "https://www.ebay.com/itm/204948335806",
"title": "Used Apple iPhone 5 - A1428",
"price": "$18.00",
"shipping": 8.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/jmsAAOSw7qZmmbHR/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/387301561019",
"title": "Apple iPhone 5s GSM 16GB model A1453",
"price": "$9.99",
"shipping": 4.38,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 5s",
"16 GB",
"Unlocked"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/4dMAAOSwtRVmvCWC/s-l140.webp",
"rating": 4.5,
"rating_count": 53
},
{
"url": "https://www.ebay.com/itm/324052569878",
"title": "Apple iPhone SE 1St Gen Fully Unlocked GSM/CDMA SmartPhone 16GB 32GB 64GB 128GB",
"price": "$73.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Open Box",
"photo": "https://i.ebayimg.com/images/g/3owAAOSwlTFeK2Uk/s-l140.webp",
"rating": 5.0,
"rating_count": 24
},
{
"url": "https://www.ebay.com/itm/204941769762",
"title": "Smartphone Lot Of 13 Phones iPhone 6 Broken As Is For Parts Or Repair",
"price": "$49.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/PgcAAOSw4ztmvWIk/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/125762427007",
"title": "Apple iPhone 4 - 8GB 16GB 32GB - All Colors - Unlocked AT&T Verizon A1332",
"price": "$31.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/2CkAAOSwAmdj5EtS/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/266958088421",
"title": "Apple iPhone 5s - 16GB - Silver (Unlocked) A1533 (CDMA + GSM)",
"price": "$30.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 5s",
"16 GB",
"Unlocked"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/KdYAAOSwGfJmxLGe/s-l140.webp",
"rating": 4.5,
"rating_count": 40
},
{
"url": "https://www.ebay.com/itm/202427720622",
"title": "Apple iPhone 6S Factory Unlocked 16GB 32GB 64GB 128GB AT&T T-mobile Verizon",
"price": "$59.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Open Box",
"photo": "https://i.ebayimg.com/images/g/5eAAAOSwrORbkDlz/s-l140.webp",
"rating": 4.5,
"rating_count": 96
},
{
"url": "https://www.ebay.com/itm/125762410157",
"title": "Apple iPhone 4s - 8/16/32/64GB - ALL COLORS Unlocked/AT&T/Sprint A1387",
"price": "$28.99",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/JCwAAOSwEUlj5EcL/s-l140.webp",
"rating": 4.5,
"rating_count": 557
},
{
"url": "https://www.ebay.com/itm/305736442108",
"title": "\ud83d\ude31Incredibly Rare iPhone 4S With Many Rare Apps Such Twitter, Angry Birds Etc\ud83d\ude31",
"price": "$89.99",
"shipping": 2.99,
"auction_end": "2024-08-28T17:38:00",
"bids": 0,
"location": null,
"subtitles": [
"Apple iPhone 4",
"16 GB",
"Verizon"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/TeMAAOSwyqxmqDSj/s-l140.webp",
"rating": 4.5,
"rating_count": 992
},
{
"url": "https://www.ebay.com/itm/326189643294",
"title": "Apple iPhone 5 (GSM Unlocked) SmartPhone for International Carriers",
"price": "$33.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/W8kAAOSwOjdc-veP/s-l140.webp",
"rating": 4.5,
"rating_count": 583
},
{
"url": "https://www.ebay.com/itm/134834602086",
"title": "90% N ew tested 100% working Apple iphone 5S 16GB Unlocked without Box",
"price": "$34.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/27UAAOSw9RVlaUcZ/s-l140.webp",
"rating": 4.5,
"rating_count": 53
},
{
"url": "https://www.ebay.com/itm/126637269223",
"title": "New Listing",
"price": "$10.00",
"shipping": 6.75,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 4s",
"16 GB",
"Unlocked"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/ky0AAOSwO2Jmxkj1/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/202458551907",
"title": "Apple iPhone 6 Plus 16GB 64GB 128GB Factory Unlocked AT&T T-mobile Verizon Good",
"price": "$63.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Good - Refurbished",
"photo": "https://i.ebayimg.com/images/g/tOsAAOSwygFec-wX/s-l140.webp",
"rating": 4.0,
"rating_count": 62
},
{
"url": "https://www.ebay.com/itm/355831062944",
"title": "90%N ew Apple iPhone 4/4s White/Black 8/16/32/64GB Fully UNLOCKED classic 3.5''",
"price": "$27.98",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/kMYAAOSwtQ9mYCEK/s-l140.webp",
"rating": 2.5,
"rating_count": 3
},
{
"url": "https://www.ebay.com/itm/387195432453",
"title": "Fair Condition - Apple iPhone 6 16 GB Silver (AT&T) - Free Shipping",
"price": "$32.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 6",
"16 GB",
"AT&T"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/yIoAAOSw2QVmhDxY/s-l140.webp",
"rating": 4.5,
"rating_count": 137
},
{
"url": "https://www.ebay.com/itm/204952085926",
"title": "Apple Iphone 6 Plus - A1522 - 16GB - Silver READ",
"price": "$24.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 6 Plus",
"16 GB",
"Unlocked"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/eMYAAOSwQSZmxOq3/s-l140.webp",
"rating": 4.5,
"rating_count": 46
},
{
"url": "https://www.ebay.com/itm/335534897494",
"title": "Apple iPhone 6 - 16 GB - gold color",
"price": "$20.50",
"shipping": 0.0,
"auction_end": "2024-08-27T08:17:00",
"bids": 2,
"location": null,
"subtitles": [
"Apple iPhone 6",
"16 GB",
"Unlocked"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/iJMAAOSw-w5mwL5w/s-l140.webp",
"rating": 4.5,
"rating_count": 18
},
{
"url": "https://www.ebay.com/itm/156104116593",
"title": "Lot of Original iPhone 2G 1st Gen 4GB 8GB 16GB mobile phone",
"price": "$23.00",
"shipping": 0.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/iIQAAOSwY09l6UU6/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/266879042410",
"title": "Apple iPhone 3 Fully Functional 16GB Black Prefect Screen See Pictures",
"price": "$50.00",
"shipping": 5.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 3GS",
"16 GB"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/iHUAAOSw42RmfdAy/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/375593546238",
"title": "Apple iPhone 4s - 16 GB - Black",
"price": "$23.00",
"shipping": 6.03,
"auction_end": "2024-08-22T07:38:00",
"bids": 3,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/A04AAOSwoQBmvhJ6/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/235702549524",
"title": "Apple iPhone 6S 16GB White No Sim Card Parts Only",
"price": "$12.50",
"shipping": 5.9,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/6I8AAOSwMM9mge7C/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/395600292307",
"title": "Apple iPhone 6 b grade lot of 2",
"price": "$59.95",
"shipping": 0.0,
"auction_end": "2024-08-23T14:15:00",
"bids": 0,
"location": null,
"subtitles": [
"Apple iPhone 6",
"16 GB"
],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/IN4AAOSwnTJmv74B/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/334971128868",
"title": "\ud83d\udcf1 Apple iPhone 5C 8/16/32GB - Unlocked Multiple Colors Grade A IOS10\ud83d\udcf1",
"price": "$25.00",
"shipping": 7.0,
"auction_end": null,
"bids": null,
"location": "from China",
"subtitles": [],
"condition": "Pre-Owned",
"photo": "https://i.ebayimg.com/images/g/ASMAAOSwPA9kyLaB/s-l140.webp",
"rating": 4.0,
"rating_count": 106
},
{
"url": "https://www.ebay.com/itm/196570247630",
"title": "Apple Iphone Ipad Ipod Lot",
"price": "$86.24",
"shipping": 14.0,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"16 GB"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/H9oAAOSwAnhmkKSj/s-l140.webp",
"rating": null,
"rating_count": null
},
{
"url": "https://www.ebay.com/itm/355968689709",
"title": "Lot of 7x Mix Apple iPhone 6 7 Plus X Xr 11 - AS IS - FOR PARTS - REPAIR - READ",
"price": "$229.99",
"shipping": null,
"auction_end": null,
"bids": null,
"location": null,
"subtitles": [
"Apple iPhone 11",
"16 GB",
"1&1"
],
"condition": "Parts Only",
"photo": "https://i.ebayimg.com/images/g/3WgAAOSwEyVmw1Yj/s-l140.webp",