-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtarget.json
More file actions
2797 lines (2797 loc) · 156 KB
/
target.json
File metadata and controls
2797 lines (2797 loc) · 156 KB
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
{
"pages": [
{
"hotspots": [
{
"area_shape": "polygon",
"coordinates": "133.75,14.5, 132.75,336.75, 284.87,336.75, 285.38,560.54, 437,560.54, 437,287.52, 437,14.5, 285.38,14.5",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3BBC52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287687211593",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "Save $60",
"price_qualifier": null,
"product_description": "Reg. 299.99 All car seats on sale. ",
"tcin": "17273398",
"title": "Graco 4Ever All-In-One convertible car seat "
},
{
"area_shape": "rectangle",
"coordinates": "448,90.42, 448,242.54, 607,242.54, 607,90.42",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3BEC52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287692298490",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "79.99",
"price_qualifier": "Sale ",
"product_description": "Reg. 99.99 All car seats on sale.",
"tcin": "17093370",
"title": "Chicco KidFit high-back booster seat "
},
{
"area_shape": "rectangle",
"coordinates": "448,253.68, 448,398.75, 607,398.75, 607,253.68",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3C1C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287695896384",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "Save $15",
"price_qualifier": "Sale ",
"product_description": "Reg. 79.99 All car seats on sale.",
"tcin": "15283327",
"title": "Evenflo Maestro harness booster seat "
},
{
"area_shape": "rectangle",
"coordinates": "448,407.8, 448,561, 607,561, 607,407.8",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3C4C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287699271362",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "94.99",
"price_qualifier": "Sale ",
"product_description": "Reg. 119.99 All car seats on sale.",
"tcin": "52319076",
"title": "Baby Trend Secure Snap Gear infant car seat "
},
{
"area_shape": "rectangle",
"coordinates": "14.5,604.74, 14.5,706, 309.5,706, 309.5,604.74",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3C7C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_e_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287702915969",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "24.29",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Pampers or Huggies super-pack diapers"
},
{
"area_shape": "polygon",
"coordinates": "391.75,608.6, 391.75,657.3, 391.75,706, 456,706.5, 456,651.89, 603,651.89, 602,608.6, 496.88,608.6",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3CAC52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_f_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287706495827",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "33.29",
"price_qualifier": null,
"product_description": "30.8-oz. non-GMO infant formula with HMO.",
"tcin": "70000038",
"title": "Similac Pro-Advance "
},
{
"area_shape": "rectangle",
"coordinates": "319,608.6, 319,706, 386.18,706, 386.18,608.6",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53C3CDC52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p01_g_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287710040922",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "39.99",
"price_qualifier": null,
"product_description": "20.5-oz. non-GMO infant formula with MFGM and Lactoferrin.",
"tcin": "50684456",
"title": "Enfamil Enspire "
},
{
"area_shape": "rectangle",
"coordinates": "14.5,343, 14.5,560.54, 278.75,560.54, 278.75,343",
"external_link": "https://www.target.com/c/car-seat-trade-in-event/-/N-v41nu#?lnk=snav_rd_car_seat_tradein",
"fine_print": null,
"hotspot_id": "57F37A53C3D0C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_Bullseye?wid=480",
"link_title": null,
"listing_id": "1375-80271287713712451",
"listing_type": "ExternalLink",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Get an extra 20% off with the Car Seat Trade-in Event"
},
{
"area_shape": "rectangle",
"coordinates": "115,567.04, 115,601.5, 513,601.5, 513,567.04",
"external_link": null,
"fine_print": "Category Coupon. Limit one coupon/offer per guest, purchase total must be met for each coupon/offer individually. Void if copied, scanned, altered, transferred, purchased, sold or prohibited by law. Item(s) may not be available at all stores. Gift cards and tax will not be included in determining purchase total. Free Target GiftCard not valid as payment on this purchase; terms and conditions apply. Quantities limited; no rain checks. Maximum retail value $25 for free Target GiftCard. No cash value. Offer valid at Target or Target.com; no promo code required. *Message and data rates may apply. One message per request. http://target.com/terms for Terms & Conditions; http://target.com/privacy for Privacy Policy.",
"hotspot_id": "57F37A53C3D2C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p04_coupon_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271287717903876",
"listing_type": "Coupon",
"mobile_coupon_code": "98560115169190430462572592",
"price": "Free $25 Target GiftCard\u2122 ",
"price_qualifier": null,
"product_description": "Find this coupon in the Target app or text SAVE to TARGET (827438)* Includes: Wipes Diapers & training pants Infant formula Baby food Baby toiletries",
"tcin": null,
"title": "With select baby department purchase of $100 or more "
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_01mw_679Na?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "baby",
"page_id": "57F37A53C39CC52FE053E245620AE690",
"page_index": 1
},
{
"hotspots": [
{
"area_shape": "rectangle",
"coordinates": "218.38,57, 218.38,351, 410,351, 410,57",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649AE251B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596396148701",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "79.99",
"price_qualifier": "Sale ",
"product_description": "Reg. 99.99 All strollers on sale. ",
"tcin": "16721766",
"title": "Graco Pace Click Connect stroller "
},
{
"area_shape": "rectangle",
"coordinates": "419.68,57, 419.68,351, 607,351, 607,57",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649AE551B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596407398780",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "94.99",
"price_qualifier": "Sale ",
"product_description": "Reg. 119.99 All strollers on sale. ",
"tcin": "51456019",
"title": "Baby Trend Expedition RG jogger "
},
{
"area_shape": "rectangle",
"coordinates": "21.15,152, 21.15,695.6, 206.12,695.6, 206.12,152",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57F384649AE851B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596411458754",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "179.99",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $30 Target GiftCard when you buy this Ergobaby baby carrier.",
"tcin": "50368734",
"title": "Ergobaby 360 all-position Cool Air baby carrier"
},
{
"area_shape": "rectangle",
"coordinates": "220,363, 220,526, 410,526, 410,363",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649AEB51B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596415666700",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "254.99",
"price_qualifier": "Sale ",
"product_description": "With on-the-go tote. Reg. 299.99 All other breast pumps on sale.",
"tcin": null,
"title": "Medela Pump-in-Style Advanced breast pump "
},
{
"area_shape": "polygon",
"coordinates": "417,363, 615,363, 615,526, 417,526",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649AEE51B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_e_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596419708323",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "10.49",
"price_qualifier": "Sale ",
"product_description": "4-oz. Nurser or 9-oz. VentAire Complete Tummy Comfort. All other Playtex bottles on sale.",
"tcin": null,
"title": "Playtex Baby 3-pk. baby bottles "
},
{
"area_shape": "rectangle",
"coordinates": "220,533, 220,696, 410,696, 410,533",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649AF151B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_f_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596423569086",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "$26",
"price_qualifier": "Sale ",
"product_description": "Reg. 29.99",
"tcin": "10477166",
"title": "Lansinoh manual breast pump "
},
{
"area_shape": "rectangle",
"coordinates": "417,533, 417,696, 615,696, 615,533",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649AF451B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p02_g_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596427061754",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "$85",
"price_qualifier": "Sale ",
"product_description": "Reg. 99.99",
"tcin": "14886168",
"title": "Evenflo Advanced double electric breast pump "
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_02mw_lloPa?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "baby",
"page_id": "57F384649AC351B7E053E345620A6D68",
"page_index": 2
},
{
"hotspots": [
{
"area_shape": "rectangle",
"coordinates": "7,39, 7,347, 202.87,347, 202.87,39",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649B4851B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596492946118",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "Save $40",
"price_qualifier": "Sale ",
"product_description": "Reg. 189.99 All strollers on sale.",
"tcin": "50997401",
"title": "Evenflo Sibby travel system "
},
{
"area_shape": "rectangle",
"coordinates": "211.37,39, 211.37,348, 392.41,348, 392.41,39",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649B4B51B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596497536609",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "239.99",
"price_qualifier": "Sale ",
"product_description": "Reg. 299.99 All strollers on sale.",
"tcin": "52354970",
"title": "Graco jogging travel system"
},
{
"area_shape": "rectangle",
"coordinates": "401.28,39, 401.28,348, 596.6,348, 596.6,39",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649B4E51B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596502224804",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "279.99",
"price_qualifier": "Sale ",
"product_description": "Ultra lightweight design. Reg. 349.99 All strollers on sale.",
"tcin": "51395185",
"title": "Chicco Viaro travel system "
},
{
"area_shape": "rectangle",
"coordinates": "7,363, 7,525.68, 203,525.68, 203,363",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57F384649B5151B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596506546939",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "129.99",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $30 Target GiftCard when you buy this Motorola baby monitor. Free $40 Target GiftCard when you buy the Motorola 5\" baby monitor. No. MBP36XL.",
"tcin": null,
"title": "Motorola 3.5\" video baby monitor "
},
{
"area_shape": "rectangle",
"coordinates": "210,363, 210,526, 597,526, 597,363",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649B5451B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_f_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596510551631",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "10% off",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Cloud Island\u2122 blankets and plush animals "
},
{
"area_shape": "rectangle",
"coordinates": "7,533, 7,695.6, 202.87,695.6, 202.87,533",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57F384649B5751B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_e_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596515303075",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "34.99",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $5 Target GiftCard when you buy this Diaper Genie. Free $5 Target GiftCard when you buy two 540-ct. Diaper Genie diaper disposal pail system refills. ",
"tcin": null,
"title": "Playtex Baby Diaper Genie complete diaper pail with odor-lock technology"
},
{
"area_shape": "rectangle",
"coordinates": "210,533, 210,696, 597,696, 597,533",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F384649B5A51B7E053E345620A6D68",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p03_g_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271596519744307",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "15% off",
"price_qualifier": null,
"product_description": " 3-pk., reg. 29.99 2-pk., reg. 24.99 ",
"tcin": null,
"title": "All SwaddleMe swaddles "
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_03mw_wiKFh?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "baby",
"page_id": "57F384649B2951B7E053E345620A6D68",
"page_index": 3
},
{
"hotspots": [
{
"area_shape": "polygon",
"coordinates": "23,395, 194,395, 194,635.6, 23,635.6",
"external_link": null,
"fine_print": "Category Coupon. Limit one coupon/offer per guest, purchase total must be met for each coupon/offer individually. Void if copied, scanned, altered, transferred, purchased, sold or prohibited by law. Item(s) may not be available at all stores. Gift cards and tax will not be included in determining purchase total. Free Target GiftCard not valid as payment on this purchase; terms and conditions apply. Quantities limited; no rain checks. Maximum retail value $25 for free Target GiftCard. No cash value. Offer valid at Target or Target.com; no promo code required. *Message and data rates may apply. One message per request. http://target.com/terms for Terms & Conditions; http://target.com/privacy for Privacy Policy.",
"hotspot_id": "57F376321D62C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p04_coupon_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271784387499680",
"listing_type": "Coupon",
"mobile_coupon_code": "98560115169190430462572592",
"price": "Free $25 Target GiftCard\u2122 ",
"price_qualifier": null,
"product_description": "Find this coupon in the Target app or text SAVE to TARGET (827438)* Includes: Wipes Diapers & training pants Infant formula Baby food Baby toiletries",
"tcin": null,
"title": "With select baby department purchase of $100 or more "
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_04al_V0gH5?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "baby",
"page_id": "57F376321D41C675E053E245620A917B",
"page_index": 4
},
{
"hotspots": [
{
"area_shape": "rectangle",
"coordinates": "426,395, 426,635.6, 597,635.6, 597,395",
"external_link": null,
"fine_print": "Excludes basics and sleepwear. Category Coupon. Limit one coupon/offer per guest, purchase total must be met for each coupon/offer individually. Void if copied, scanned, altered,transferred, purchased, sold or prohibited by law. Item(s) may not be available at all stores. Gift cards and tax will not be included in determining purchase total. Free Target GiftCard not valid as payment on this purchase; terms and conditions apply. Quantities limited; no rain checks. Maximum retail value $5 for free Target GiftCard. No cash value. Offer valid at Target or Target.com; no promo code required. *Message and data rates may apply. One message per request. http://target.com/terms for Terms & Conditions; http://target.com/privacy for Privacy Policy.",
"hotspot_id": "57F376321D35C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p05_coupon_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271784347172598",
"listing_type": "Coupon",
"mobile_coupon_code": "98560115141560560227872596",
"price": "Free $5 Target GiftCard\u2122 ",
"price_qualifier": null,
"product_description": "Find this coupon in the Target app or text BABY to TARGET (827438)*",
"tcin": null,
"title": "With newborn apparel purchase of $20 or more"
},
{
"area_shape": "rectangle",
"coordinates": "13,22, 13,154.7, 382.25,154.7, 382.25,22",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321D38C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p05_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271784362603405",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "4.99-15.99",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Select Cat & Jack\u2122 bodysuits, pants, rompers & tutu sets"
},
{
"area_shape": "rectangle",
"coordinates": "13,160, 13,270.2, 340.4,270.2, 340.4,160",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321D3BC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p05_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271784366712021",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "9.99",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Select Cloud Island 4-pk. bodysuits & 3-pc. sets"
},
{
"area_shape": "rectangle",
"coordinates": "13,275.62, 13,413.83, 341,413.83, 341,275.62",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321D3EC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p05_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271784370303888",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "8.99-16.99",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Select Just One You made by Carter\u2019s sleep \u2019n plays & sets"
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_05al_gZo0r?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "baby",
"page_id": "57F376321D14C675E053E245620A917B",
"page_index": 5
},
{
"hotspots": [
{
"area_shape": "polygon",
"coordinates": "54.32,20.2, 54.32,236.7, 112.8,236.7, 112.6,269, 218.75,269, 218.75,144.6, 218.75,20.2, 136.53,20.2",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help",
"hotspot_id": "57F376321D86C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916661275835",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "59.99 ",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $10 Target GiftCard when you buy any NBA 2K18 game AND any select Ruffles. Available Friday. Legend edition, 99.99",
"tcin": null,
"title": "NBA 2K18 Early Tip edition on PS3/4 or Xbox 360/One"
},
{
"area_shape": "polygon",
"coordinates": "23,241, 23,298.37, 23,355.75, 120.88,355.75, 218.75,355.75, 218.75,274, 109,274.33, 108.67,240",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help",
"hotspot_id": "57F376321D89C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916666125528",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "2/$6 ",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $10 Target GiftCard when you buy any NBA 2K18 game AND any select Ruffles.",
"tcin": null,
"title": "Select 7.5- to 9-oz. Ruffles "
},
{
"area_shape": "rectangle",
"coordinates": "231.25,19, 231.25,355.75, 449.6,355.75, 449.6,19",
"external_link": null,
"fine_print": "Free offer quantities limited; no rain checks. Limit one package of Pop-Tarts per game. ",
"hotspot_id": "57F376321D8CC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916670149291",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "59.99 ",
"price_qualifier": "Free item with purchase",
"product_description": "Free select packages of Pop-Tarts when you buy Destiny 2. Available now. ",
"tcin": null,
"title": "Destiny 2 standard edition on PS4 or Xbox One"
},
{
"area_shape": "polygon",
"coordinates": "460.35,19, 460.35,58.75, 460.35,98.5, 460.35,138.25, 460.35,140.75, 550.5,140.75, 550.5,75.33, 606.47,75.33, 606.47,58.75, 606.47,19, 569.94,19, 533.41,19, 496.88,19",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321D8FC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916674182445",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "59.99 ",
"price_qualifier": null,
"product_description": "Save $10 on any Xbox or PlayStation gift card when you buy any NHL 18 game. Available Friday.",
"tcin": null,
"title": "NHL 18 on Xbox One or PS4"
},
{
"area_shape": "rectangle",
"coordinates": "554,80, 554,151.54, 606.5,151.54, 606.5,80",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321D92C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_e_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916678184132",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "$25",
"price_qualifier": null,
"product_description": "Save $10 on any Xbox or PlayStation gift card when you buy any NHL 18 game.",
"tcin": null,
"title": "Xbox gift card "
},
{
"area_shape": "rectangle",
"coordinates": "459,185, 459,347, 607,347, 607,185",
"external_link": null,
"fine_print": "Teams and styles vary by store.",
"hotspot_id": "57F376321D95C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_f_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916681927174",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "59.99 ",
"price_qualifier": null,
"product_description": "Save $10 when you buy any NFL fan gear AND any Madden NFL 18 game.",
"tcin": null,
"title": "Madden NFL 18 on Xbox One or PS4"
},
{
"area_shape": "polygon",
"coordinates": "13,363, 210.5,363, 408,363, 408,484.8, 140.75,484.8, 140.75,636, 13,636, 13,499.5",
"external_link": null,
"fine_print": "TV screens shown with simulated picture.",
"hotspot_id": "57F376321D98C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_g_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916686009179",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "579.99 ",
"price_qualifier": "Sale ",
"product_description": "Save $50, reg. 629.99 50\" model, reg. 549.99, sale 499.99",
"tcin": "52475720",
"title": "Element 55\" 4K 120Hz Smart UHD TV with Amazon Fire and Alexa Voice Remote"
},
{
"area_shape": "polygon",
"coordinates": "146,491.5, 459,491.5, 459,687.6, 146,687.6",
"external_link": null,
"fine_print": "TV screens shown with simulated picture.",
"hotspot_id": "57F376321D9BC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_h_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916690436950",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "329.99",
"price_qualifier": "Sale ",
"product_description": "Save $20, reg. 349.99 ",
"tcin": "52177069",
"title": "TCL 43\" 4K 120Hz Roku Smart UHD TV with HDR"
},
{
"area_shape": "rectangle",
"coordinates": "466,363, 466,526, 607,526, 607,363",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321D9EC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p06_i_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916694602661",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "2/$16 ",
"price_qualifier": "Sale ",
"product_description": "AA or AAA 10-pk. Max and 6-pk. Ultimate Lithium. Select other Energizer batteries on sale. ",
"tcin": null,
"title": "Energizer batteries "
},
{
"area_shape": "polygon",
"coordinates": "466,533, 534.8,533, 534.8,696, 466,696",
"external_link": "https://itunes.apple.com/us/app/target/id297430070?mt=8",
"fine_print": null,
"hotspot_id": "57F376321DA1C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_TargetApp_iOS?wid=480",
"link_title": null,
"listing_id": "1375-80271916698892726",
"listing_type": "ExternalLink",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Start saving today with Cartwheel, now in the Target app"
},
{
"area_shape": "polygon",
"coordinates": "539.41,533, 607,533, 607,696, 539.41,696",
"external_link": "https://play.google.com/store/apps/details?id=com.target.ui&feature=search_result",
"fine_print": null,
"hotspot_id": "57F376321DA3C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_TargetApp_Android?wid=480",
"link_title": null,
"listing_id": "1375-80271916702997944",
"listing_type": "ExternalLink",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Start saving today with Cartwheel, now in the Target app"
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_06mw_nhPE2?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "electronics, grocery, video games",
"page_id": "57F376321D65C675E053E245620A917B",
"page_index": 6
},
{
"hotspots": [
{
"area_shape": "rectangle",
"coordinates": "347,23, 347,358.93, 596.6,358.93, 596.6,23",
"external_link": null,
"fine_print": "ONLY AT STORES WITH TARGET TECH. \u2020In stores only. Get a guaranteed $100 gift card for Samsung Galaxy S8 or Galaxy S8+ with purchase and activation of a Verizon Device Payment, AT&T Next, Sprint 24-Month Installments or Lease plan. Excludes prepaid devices and AT&T Next upgrades. If you return a cell phone purchased during a gift card promotion, for any reason, the gift card will be forfeited and the full value of the gift card is required to be returned to Target. If you exchange a cell phone outside of the original promotional period, the gift card will be forfeited, but may be eligible for the current promotion. Carriers, coverage and products may vary by store. Requires credit approval, wireless service plan, qualifying device and installment billing agreement for the carrier\u2019s required term. $0 down for well qualified customers. For all others, down payment and other restrictions may apply. Installment billing: Monthly payments for term (24-30 months subject to carrier) at full retail price. 0% APR. Sales tax (on total price) may be due at purchase. If you cancel wireless service, remaining balance on device becomes due. Sprint Lease: Monthly lease payments excluding taxes. Requires credit approval, qualifying plan and activation fees. Early termination of lease/service: Remaining lease payments will be due immediately and requires device return or payment of purchase option device price in lease. Restocking fee and other charges may apply. Number of financed devices per account limitations may apply. Subject to carrier terms and conditions. Terms subject to change. Offer may not be combinable with other credits, discounts and offers. Taxes/surcharges due at time of purchase. Taxes applied to price of phone prior to the gift card credit. Not available in all locations and some stores may have additional limitations. All carrier/phone availability varies by location. Price match not valid on mobile phones. *Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help \u00aaSamsung memory card and wireless charger delivered through Samsung. Visit Samsung.com for offer fulfillment. Quantities limited; no rain checks. Fulfillment requires upload of purchase receipt and pre-order confirmation email. ",
"hotspot_id": "57F37A53CDB7C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_pD_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80277478927905815",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $100 Target GiftCard with qualified activation\u2020* ",
"tcin": null,
"title": "Samsung Galaxy S8 or Galaxy S8+"
},
{
"area_shape": "rectangle",
"coordinates": "14.5,402, 14.5,621.55, 180,621.55, 180,402",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F37A53CDBAC52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_pD_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80277478932613717",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "50% off",
"price_qualifier": null,
"product_description": "When you purchase any Boost Mobile airtime card $35 or more. Reg. 9.99",
"tcin": null,
"title": "Boost Mobile SIM kit "
},
{
"area_shape": "rectangle",
"coordinates": "197,402, 197,621.55, 597.87,621.55, 597.87,402",
"external_link": null,
"fine_print": "Lower-priced card will be 20% off. Quantities limited; no rain checks.",
"hotspot_id": "57F37A53CDBDC52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_pD_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80277478935918636",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "Buy one, get one 20% off",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "All TracFone airtime cards"
},
{
"area_shape": "rectangle",
"coordinates": "13,23, 13,359, 335,359, 335,23",
"external_link": "https://mobilepreorder.target.com/samsung/?lnk=free150giftcard",
"fine_print": null,
"hotspot_id": "57F37A53CDC0C52FE053E245620AE690",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_pD_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80277478939170507",
"listing_type": "ExternalLink",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Pre-order the Samsung Galaxy Note8 now"
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_Dcommw_5MA6L?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "MOB, electronics",
"page_id": "57F37A53CD97C52FE053E245620AE690",
"page_index": 8
},
{
"hotspots": [
{
"area_shape": "rectangle",
"coordinates": "6,20.2, 6,551.27, 301.3,551.27, 301.3,20.2",
"external_link": null,
"fine_print": "Release date subject to change. Quantities limited; no rain checks. Limit five of each new-release movie per guest, except in NM.",
"hotspot_id": "57F376321DDEC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p07_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916733592601",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": null,
"product_description": "Movies available Tuesday, September 12. Music available Friday, September 15.",
"tcin": null,
"title": "New movies and music"
},
{
"area_shape": "polygon",
"coordinates": "308,19, 597,19, 597,291, 308,291",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321DE1C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p07_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916737942056",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "20% off ",
"price_qualifier": null,
"product_description": "Reg. 14.99 & 19.99, sale 11.99 & 15.99",
"tcin": null,
"title": "Select 90\u2019s games "
},
{
"area_shape": "polygon",
"coordinates": "308,300, 597,300, 597,470, 308,470",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321DE4C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p07_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916742085688",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "$25 & 29.99 ",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Adult party games "
},
{
"area_shape": "polygon",
"coordinates": "308,476, 449,476, 449,696, 308,696",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321DE7C675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p07_e_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916746388417",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "20%off ",
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Select LEGO Friends, City, Duplo and Minecraft toys "
},
{
"area_shape": "rectangle",
"coordinates": "456,476, 456,696, 597,696, 597,476",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321DEAC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p07_f_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916750658245",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "$30 each",
"price_qualifier": "Sale ",
"product_description": "Reg. 34.99",
"tcin": null,
"title": "Our Generation Deluxe poseable doll with book or horse"
},
{
"area_shape": "rectangle",
"coordinates": "7,560, 7,695.6, 301.3,695.6, 301.3,560",
"external_link": null,
"fine_print": null,
"hotspot_id": "57F376321DEDC675E053E245620A917B",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p07_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80271916754920814",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": null,
"price_qualifier": null,
"product_description": null,
"tcin": null,
"title": "Superhero flicks"
}
],
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/20170910_07mw_xujdS?wid=750",
"original_height": 720,
"original_width": 621,
"page_description": "electronics, grocery, video games",
"page_id": "57F376321DBDC675E053E245620A917B",
"page_index": 9
},
{
"hotspots": [
{
"area_shape": "rectangle",
"coordinates": "23,23, 23,356, 143.6,356, 143.6,23",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57FB1F6F2DBF7200E053E245620AC6D7",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p08_a_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80272124246771388",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "$119 ",
"price_qualifier": "Free Target GiftCard",
"product_description": "Save $30, reg. $149. Free $10 Target GiftCard when you buy this item. ",
"tcin": null,
"title": "Anova sous vide precision cooker with Bluetooth"
},
{
"area_shape": "rectangle",
"coordinates": "149.2,23, 149.2,356, 306.8,356, 306.8,23",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57FB1F6F2DC27200E053E245620AC6D7",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p08_b_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80272124257592413",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "99.95 ",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $10 Target GiftCard when you buy this item. ",
"tcin": null,
"title": "Instant Pot 7-in-1 6-qt. pressure cooker "
},
{
"area_shape": "rectangle",
"coordinates": "314.5,22, 314.5,355, 452.77,355, 452.77,22",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57FB1F6F2DC57200E053E245620AC6D7",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p08_c_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80272124260807779",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "99.99 ",
"price_qualifier": "Free Target GiftCard",
"product_description": "Free $10 Target GiftCard when you buy this item. ",
"tcin": "51091290",
"title": "As Seen on TV Power Air Fryer XL "
},
{
"area_shape": "rectangle",
"coordinates": "457.6,23, 457.6,356, 607,356, 607,23",
"external_link": null,
"fine_print": "Quantities limited; no rain checks. Terms and conditions apply to gift cards. For details, go to help.target.com/help ",
"hotspot_id": "57FB1F6F2DC87200E053E245620AC6D7",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p08_d_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80272124265485338",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "99.99 ",
"price_qualifier": "Free Target GiftCard",
"product_description": "Save $20, reg. 119.99. Free $20 Target GiftCard when you buy this item. ",
"tcin": null,
"title": "Keurig 2.0 K200 coffee maker brewing system "
},
{
"area_shape": "rectangle",
"coordinates": "23,363, 23,696.22, 164,696.22, 164,363",
"external_link": null,
"fine_print": null,
"hotspot_id": "57FB1F6F2DCB7200E053E245620AC6D7",
"image_url": "https://scene7-secure.targetimg1.com/is/image/Target/dwa_p08_e_20170910?wid=480",
"link_title": null,
"listing_id": "1375-80272124268083192",
"listing_type": "ProductDetails",
"mobile_coupon_code": null,
"price": "89.99",
"price_qualifier": "Sale ",
"product_description": "Save $40, reg. 129.99. Includes two regular and one stainless steel cup to keep your frozen smoothies colder. All other Ninja products on sale. ",
"tcin": null,