-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproducts.json
More file actions
7637 lines (7637 loc) · 273 KB
/
Copy pathproducts.json
File metadata and controls
7637 lines (7637 loc) · 273 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
[
{
"id": "1dff53c9-78e5-46f3-8e6a-41e4260228cb",
"title": "25G Direct Attach Cable",
"shortDescription": "SFP28 direct attach cable available with a 25 Gbps max data rate.",
"slug": "25gbps-direct-attach-cable",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/1dff53c9-78e5-46f3-8e6a-41e4260228cb/58041074-d862-487d-b5ef-116d082ef2a0.png"
},
"variants": [
{
"id": "56bf17c3-89ab-4110-a3d0-aeec6e9c8bef",
"displayPrice": {
"amount": 2300,
"currency": "USD"
}
},
{
"id": "4a93202f-c489-4594-8bbe-ebb8fd035739",
"displayPrice": {
"amount": 2500,
"currency": "USD"
}
},
{
"id": "f31c94cb-8f93-446e-905f-33c529afab56",
"displayPrice": {
"amount": 3900,
"currency": "USD"
}
}
]
},
{
"id": "1ca80f22-3393-4711-a48d-47fa6f4d5ad4",
"title": "Camera G3 Instant",
"shortDescription": "Compact, wide-angle, WiFi-connected camera with two-way audio.",
"slug": "uvc-g3-ins",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/1ca80f22-3393-4711-a48d-47fa6f4d5ad4/fd05e793-5be2-4f88-960c-c8c779c3cd8e.png"
},
"variants": [
{
"id": "62594c39-fa63-47d8-b4f7-5f4e29ff40c0",
"displayPrice": {
"amount": 7900,
"currency": "USD"
}
}
]
},
{
"id": "f58ce054-78d2-4ade-bb54-7bfca7cc4cb2",
"title": "USB-C Cable with Charge Display",
"shortDescription": "Braided power and data cable with a double-sided charge display.",
"slug": "uacc-cable-usb-100w",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/f58ce054-78d2-4ade-bb54-7bfca7cc4cb2/7db65646-d94d-4ab1-ac7a-811ec0ed58be.png"
},
"variants": [
{
"id": "0d107be2-469a-4833-baa1-16b2547f2073",
"displayPrice": {
"amount": 1900,
"currency": "USD"
}
},
{
"id": "ae10a6de-1bfc-464b-92e0-f61c1e9ae318",
"displayPrice": {
"amount": 2500,
"currency": "USD"
}
},
{
"id": "156906d4-a968-43a3-bdae-469bb923f1ea",
"displayPrice": {
"amount": 2900,
"currency": "USD"
}
},
{
"id": "2846caf8-a7d9-4f3c-9162-78aad8ce5604",
"displayPrice": {
"amount": 5900,
"currency": "USD"
}
}
]
},
{
"id": "149aa8ae-a41a-4ed9-acf7-42843de2a644",
"title": "AI Theta Angle Mount",
"shortDescription": "Angled ceiling mount for AI Theta Standard Lenses.",
"slug": "uacc-ai-theta-angle-mount-camera",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/149aa8ae-a41a-4ed9-acf7-42843de2a644/1f87f35f-9a83-4062-8595-575f49c6fefc.png"
},
"variants": [
{
"id": "715f441f-918c-4ef0-8c3f-a121c00cc8fa",
"displayPrice": {
"amount": 2900,
"currency": "USD"
}
}
]
},
{
"id": "3f3d68a6-fe0f-42ae-9e83-3dcbc187cb3c",
"title": "Hot-Swappable Power Module (1,200W)",
"shortDescription": "Hot swappable AC/DC power module, 1,200W, 54V.",
"slug": "uacc-psu-54v-1200w",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/3f3d68a6-fe0f-42ae-9e83-3dcbc187cb3c/25ff621b-8630-4cb6-97a7-d8757456d4b9.png"
},
"variants": [
{
"id": "bf385328-01ec-4163-809d-b3891025cb17",
"displayPrice": {
"amount": 29900,
"currency": "USD"
}
}
]
},
{
"id": "4f2fa694-473c-4b66-9f07-bb709f269aa6",
"title": "Access Reader Lite",
"shortDescription": "A convenient door access scanner supporting NFC reader and handwave door unlocking.",
"slug": "ua-reader-lite",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/4f2fa694-473c-4b66-9f07-bb709f269aa6/fd526fd1-6450-4256-825f-cd36da590b21.png"
},
"variants": [
{
"id": "2f3fefb6-fc12-4c36-8149-2a65ee48221b",
"displayPrice": {
"amount": 9900,
"currency": "USD"
}
}
]
},
{
"id": "0222c3b7-e751-4c59-9d52-23205104b1ce",
"title": "100G LR4 Single-Mode Optical Module",
"shortDescription": "QSFP28 transceiver that supports 100G connections up to 10 km using single-mode fiber with a duplex LC UPC connector.",
"slug": "uacc-om-qsfp28-lr4",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/0222c3b7-e751-4c59-9d52-23205104b1ce/c2a8612f-220f-4861-909d-6443b135ad59.png"
},
"variants": [
{
"id": "9b759c80-52f6-4b16-aab5-11b5e0c9b633",
"displayPrice": {
"amount": 29900,
"currency": "USD"
}
}
]
},
{
"id": "ad5d4122-1efe-426f-b12a-6d86aab6e394",
"title": "Gate Access Starter Kit",
"shortDescription": "Control a vehicle gate using the connected Intercom and authorize gate access with License Plate Unlock when paired with a compatible Protect AI camera*.",
"slug": "ua-sk-gate",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/ad5d4122-1efe-426f-b12a-6d86aab6e394/7f748d7e-3c8a-4e67-a6dd-8811309ce46f.png"
},
"variants": [
{
"id": "212913f6-f5ea-497c-b5d9-a567efd42b2b",
"displayPrice": {
"amount": 69900,
"currency": "USD"
}
}
]
},
{
"id": "05239039-55cc-4824-822a-02d5df80c269",
"title": "Mobile Router Industrial",
"shortDescription": "Compact, ruggedized, and carrier unlocked LTE Cat 4 mobile WiFi router designed for indoor/outdoor IoT applications.",
"slug": "umr-industrial-us",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/05239039-55cc-4824-822a-02d5df80c269/d83ed9c0-ec60-4687-b51c-32455effbeb5.png"
},
"variants": [
{
"id": "81050dd6-ef9b-4113-80f5-08c2b488b3d7",
"displayPrice": {
"amount": 19900,
"currency": "USD"
}
}
]
},
{
"id": "aa488367-3661-456b-b897-0cb1afb3ba85",
"title": "Pro Max 16 Rack Mount",
"shortDescription": "1U rack-mount accessory for Pro Max 16 switches.",
"slug": "uacc-pro-max-16-rm",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/aa488367-3661-456b-b897-0cb1afb3ba85/1fa4db18-c1ed-4233-a53b-06a3a789d7e7.png"
},
"variants": [
{
"id": "3833b2f1-cfcb-438e-bb4d-4faa8ec93ccd",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
}
]
},
{
"id": "3d856418-b67f-4241-9226-36295a3fd7cf",
"title": "PoE Smart Chime",
"shortDescription": "PoE plug-and-play notification device, designed to pair with a UniFi doorbell or door access hub.",
"slug": "uacc-chime-poe",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/3d856418-b67f-4241-9226-36295a3fd7cf/0b54c714-71e8-4686-b7ef-594df7fb0ada.png"
},
"variants": [
{
"id": "5cf45a51-b363-48f1-bf9d-624a257189c9",
"displayPrice": {
"amount": 7900,
"currency": "USD"
}
}
]
},
{
"id": "b88131c3-c1e3-4610-8815-c1ef1beb1707",
"title": "Flagship AP Replacement Mounting System",
"shortDescription": "Professional mounting system for UniFi access points.",
"slug": "unifi-professional-mounting-system",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/b88131c3-c1e3-4610-8815-c1ef1beb1707/33bbbd86-d078-48b4-87f5-c48403d9b9a2.png"
},
"variants": [
{
"id": "e274e0a2-cb82-4253-ad56-7c71f2077511",
"displayPrice": {
"amount": 850,
"currency": "USD"
}
}
]
},
{
"id": "60459473-c989-41db-93f2-3c0f40df84f3",
"title": "Dream Router",
"shortDescription": "Desktop UniFi Cloud Gateway with integrated WiFi 6 and PoE switching.",
"slug": "udr",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/60459473-c989-41db-93f2-3c0f40df84f3/0e6828d7-04e4-4a8c-bded-40ea69f48a3f.png"
},
"variants": [
{
"id": "266dce72-4704-4789-8ddd-792404bcdba2",
"displayPrice": {
"amount": 19900,
"currency": "USD"
}
}
]
},
{
"id": "e8e4f7b9-9437-4621-b3ee-6d3fa072e3c0",
"title": "AI Theta Pro Angle Mount",
"shortDescription": "Angled ceiling mount for AI Theta Pro Lenses.",
"slug": "uacc-ai-theta-pro-angle-mount-camera",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/e8e4f7b9-9437-4621-b3ee-6d3fa072e3c0/3e6a53ac-7be3-4e63-a95e-bfb509d6b0d5.png"
},
"variants": [
{
"id": "1eaffd3e-5f53-4925-9532-4d86158ae64b",
"displayPrice": {
"amount": 2900,
"currency": "USD"
}
}
]
},
{
"id": "97f56c48-30e9-49bd-af6a-d4b3cfee33ce",
"title": "Access Point Lite Cover",
"shortDescription": "Customized encasing for U6+, U6 Lite and nanoHD.",
"slug": "nhd-cover",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/97f56c48-30e9-49bd-af6a-d4b3cfee33ce/ebea3c1f-b61f-4ead-8710-077d33b17153.png"
},
"variants": [
{
"id": "87acd470-5652-49fd-96b4-3429f5c03f65",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
},
{
"id": "2ed8faed-b83c-4c7c-a90d-20e093e6cf9c",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
},
{
"id": "229061c0-384b-47e8-ad29-061f8d850b48",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
},
{
"id": "0677e0fb-5ab4-4068-9afa-51494d346043",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
},
{
"id": "e7d58d55-9728-43f5-9b85-21d5de24a863",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
},
{
"id": "5facbfcf-e37a-4e77-b14c-6992c4de0673",
"displayPrice": {
"amount": 4900,
"currency": "USD"
}
}
]
},
{
"id": "1b6fcc08-a6b8-4496-a831-6125a47c412f",
"title": "Dream Machine Special Edition",
"shortDescription": "10G Cloud Gateway with 100+ UniFi device / 1,000+ client support, 3.5 Gbps IPS routing, and built-in PoE switching.",
"slug": "udm-se",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/1b6fcc08-a6b8-4496-a831-6125a47c412f/148125d6-5d75-44f5-b106-18f5fedf7c7f.png"
},
"variants": [
{
"id": "2c3aaf6e-4197-45b2-9c38-d2d4da762389",
"displayPrice": {
"amount": 49900,
"currency": "USD"
}
}
]
},
{
"id": "217c2677-ceb5-4908-8953-792cdc72fd32",
"title": "G4 Doorbell Pro PoE Kit",
"shortDescription": "Premium UniFi doorbell with integrated PoE and included PoE chime for plug-and-play installation.",
"slug": "uvc-g4-doorbell-pro-poe-kit",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/217c2677-ceb5-4908-8953-792cdc72fd32/53757abd-20a1-42c5-bc98-7f0ba210a2b2.png"
},
"variants": [
{
"id": "1e505570-29d7-4af7-b07f-735891b5966c",
"displayPrice": {
"amount": 37900,
"currency": "USD"
}
},
{
"id": "51cf790c-b6d0-46a8-9024-2565d0fa49cd",
"displayPrice": {
"amount": 37900,
"currency": "USD"
}
}
]
},
{
"id": "998f8bbd-ef2e-4fed-8c88-9074e623409e",
"title": "WiFi BaseStation XG",
"shortDescription": "Tri-radio WiFi 5 AP with 12 spatial streams and a selectable beamforming antenna, designed for high-density applications at large venues.",
"slug": "uwb-xg",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/998f8bbd-ef2e-4fed-8c88-9074e623409e/7079a25f-df5f-4911-8b02-e7c67ddd3c93.png"
},
"variants": [
{
"id": "2c001c95-3a17-47ed-8003-e7e5ac15832d",
"displayPrice": {
"amount": 149900,
"currency": "USD"
}
}
]
},
{
"id": "5b69cdb5-e7ea-44e6-ae16-8714339038fb",
"title": "Switch Pro 24 PoE",
"shortDescription": "A 24-port, Layer 3 switch capable of high-power PoE++ output.",
"slug": "usw-pro-24-poe",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/5b69cdb5-e7ea-44e6-ae16-8714339038fb/8f85af7b-7d44-4a3d-89e4-6e0c8fae35c1.png"
},
"variants": [
{
"id": "d1c1a63d-c2a7-45a2-ac6b-321609aa6d69",
"displayPrice": {
"amount": 69900,
"currency": "USD"
}
}
]
},
{
"id": "a06d6d72-f0dc-43a7-bc42-1237bbec0e49",
"title": "12U Rack Cabinet",
"shortDescription": "Fully assembled, wall-mount rack cabinet with glass front, hinged lockable rear door, dual fans, and removable side panels.",
"slug": "uacc-rack-12u-wall",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/a06d6d72-f0dc-43a7-bc42-1237bbec0e49/875f86d0-4bce-472d-8384-0be5a93491d8.png"
},
"variants": [
{
"id": "c0dfa064-3f96-4884-9f47-23dc6f371c97",
"displayPrice": {
"amount": 59900,
"currency": "USD"
}
}
]
},
{
"id": "2c719a5f-34fc-433d-a038-567047f4949d",
"title": "G5 PTZ Surface Mount",
"shortDescription": "Ceiling surface mount accessory for G5 PTZ.",
"slug": "uacc-g5-ptz-sm",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/2c719a5f-34fc-433d-a038-567047f4949d/d1e199e5-ad3d-4bc9-ae2d-5b7774c105c8.png"
},
"variants": [
{
"id": "45c1fbd7-c725-4833-b721-281fc6c8614e",
"displayPrice": {
"amount": 2900,
"currency": "USD"
}
}
]
},
{
"id": "f83443e3-38b7-415b-85cd-e3da1d0c044c",
"title": "Switch Enterprise Campus 24 PoE",
"shortDescription": "Enterprise-grade 24-port, Layer 3 Etherlighting™ PoE+++ switch with high-capacity 10 GbE RJ45 and 25G SFP28 connections for high availability system design.",
"slug": "ecs-24-poe",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/f83443e3-38b7-415b-85cd-e3da1d0c044c/fd5c9635-103f-462e-aacb-65e7677fcebb.png"
},
"variants": [
{
"id": "6f65f5c6-a88e-47ea-b04c-4c8e16f77b8a",
"displayPrice": {
"amount": 239900,
"currency": "USD"
}
}
]
},
{
"id": "350070a0-ae43-431b-b052-8e849c3b0a75",
"title": "Access Point U7 Pro Max",
"shortDescription": "Ceiling-mounted WiFi 7 AP with 8 spatial streams, 6 GHz support, and a dedicated spectral scanning engine for interference-free WiFi in demanding, large-scale environments.",
"slug": "u7-pro-max",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/350070a0-ae43-431b-b052-8e849c3b0a75/bad94693-bc54-4ab4-b060-9b972401941c.png"
},
"variants": [
{
"id": "d7d9f8eb-a9ff-4809-a0bd-4535a3f961a5",
"displayPrice": {
"amount": 27900,
"currency": "USD"
}
}
]
},
{
"id": "9a387fbc-6fe3-4a6d-a33b-3c0c1a1c4656",
"title": "AI Theta Pro Wide-Angle Lens",
"shortDescription": "Wide-angle lens with enhanced low-light performance and dynamic range that connects to an AI Theta Hub.",
"slug": "uvc-ai-theta-prolens110",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/9a387fbc-6fe3-4a6d-a33b-3c0c1a1c4656/c40d2f21-011d-414a-987d-58abbea52d80.png"
},
"variants": [
{
"id": "83952719-88c0-46ba-b7bd-46a01f832647",
"displayPrice": {
"amount": 12900,
"currency": "USD"
}
}
]
},
{
"id": "e3cbecf3-07dc-4f09-82e1-b88dca942d7a",
"title": "Camera G5 PTZ",
"shortDescription": "Compact, all-weather camera with ultra-low latency pan-tilt-zoom control and versatile mounting options.",
"slug": "uvc-g5-ptz",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/e3cbecf3-07dc-4f09-82e1-b88dca942d7a/75026cb6-a40b-4e96-b4f8-b348020086e9.png"
},
"variants": [
{
"id": "d79b5a58-028c-4673-96df-074820557f91",
"displayPrice": {
"amount": 29900,
"currency": "USD"
}
}
]
},
{
"id": "e445b7fe-9bd4-47a7-9e2a-bf91f2cfee4a",
"title": "AI Theta Audio",
"shortDescription": "Two-way audio module that connects to an AI Theta Hub.",
"slug": "uvc-ai-theta-audio",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/e445b7fe-9bd4-47a7-9e2a-bf91f2cfee4a/b614ae39-dc9f-4b1d-9498-7422a338652d.png"
},
"variants": [
{
"id": "23080013-0372-4ff4-88cd-070125a5f9a2",
"displayPrice": {
"amount": 6900,
"currency": "USD"
}
}
]
},
{
"id": "b512f2e2-faf0-427c-97af-57b8cb1611e9",
"title": "DIN Rail Mount",
"shortDescription": "DIN rail mount for UniFi compact switches.",
"slug": "uacc-switch-din",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/b512f2e2-faf0-427c-97af-57b8cb1611e9/30ca42e1-5202-48d2-8bf8-8b1a7a2e210a.png"
},
"variants": [
{
"id": "13600c58-d29c-4801-ad04-7691583cf82f",
"displayPrice": {
"amount": 1500,
"currency": "USD"
}
}
]
},
{
"id": "994152e4-baf8-4ea1-b8d6-22f9765e98c4",
"title": "UniFi Cable Internet",
"shortDescription": "Multi-gigabit, rack-mountable cable modem with integrated connection monitoring.",
"slug": "uci",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/994152e4-baf8-4ea1-b8d6-22f9765e98c4/95cc2a9d-bd5b-43c8-8afd-1c57e346a288.png"
},
"variants": [
{
"id": "89a5005f-4c33-4575-beb4-7ed01e680a01",
"displayPrice": {
"amount": 27900,
"currency": "USD"
}
}
]
},
{
"id": "e1251503-491a-438e-8f6c-f6212c0c47e2",
"title": "10G Multi-Mode Optical Module",
"shortDescription": "SFP+ transceiver that supports 10G connections up to 300 m using multi-mode fiber with a duplex LC UPC connector.",
"slug": "10-gbps-multi-mode-optical-module",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/e1251503-491a-438e-8f6c-f6212c0c47e2/d5d70720-32af-40f9-b11f-df16731c7031.png"
},
"variants": [
{
"id": "56cc8eb9-0517-4d1a-bfd2-b51d38314884",
"displayPrice": {
"amount": 2000,
"currency": "USD"
}
},
{
"id": "1f5fdb3a-6124-46ea-b40f-56205150e5ce",
"displayPrice": {
"amount": 3800,
"currency": "USD"
}
},
{
"id": "f15c2e61-36f8-48dd-8502-bc9e2ec9909b",
"displayPrice": {
"amount": 36000,
"currency": "USD"
}
}
]
},
{
"id": "3b8eb586-5c9a-4c5d-a60a-b6ed0676f33c",
"title": "Power Backup",
"shortDescription": "950W redundant power supply for rack-mounted UniFi devices.",
"slug": "usp-rps",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/3b8eb586-5c9a-4c5d-a60a-b6ed0676f33c/c0f1f5dc-5ecb-4644-a8fb-a36cd1c66c08.png"
},
"variants": [
{
"id": "34f219d6-f923-414c-ac67-907db1157efa",
"displayPrice": {
"amount": 39900,
"currency": "USD"
}
}
]
},
{
"id": "a9d98141-24fb-4a01-ac10-8bdf8536445f",
"title": "CWDM Mux Demux 8",
"shortDescription": "Rack-mountable 8-channel 1450 to 1590 nm CWDM mux demux designed to increase capacity of existing fiber infrastructure.",
"slug": "uacc-cwdm-8",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/a9d98141-24fb-4a01-ac10-8bdf8536445f/05de61a8-694a-468b-ba1f-bd698fee07a3.png"
},
"variants": [
{
"id": "4aa40ca7-c58f-455f-8b24-31c4697c74e1",
"displayPrice": {
"amount": 34900,
"currency": "USD"
}
}
]
},
{
"id": "d8fee47d-b53e-4a86-a5cb-cf2f6ab1c5ef",
"title": "Access Point U6 Long-Range",
"shortDescription": "Ceiling-mounted WiFi 6 AP with 8 spatial streams and extended signal range.",
"slug": "u6-lr",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/d8fee47d-b53e-4a86-a5cb-cf2f6ab1c5ef/4f1f5856-05c2-4989-970e-6751e6af7eb9.png"
},
"variants": [
{
"id": "7ebb1fa5-b40d-4844-a227-5bff1caefbea",
"displayPrice": {
"amount": 17900,
"currency": "USD"
}
}
]
},
{
"id": "90d00ca5-015c-4bc6-b3bd-0d1f8d5bdea3",
"title": "Access Door Hub",
"shortDescription": "A single-door mechanism that provides complete entry and exit control via connected Access Readers.",
"slug": "ua-hub-door",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/90d00ca5-015c-4bc6-b3bd-0d1f8d5bdea3/e67b9038-8b8b-4feb-98ec-e6c4451f261f.png"
},
"variants": [
{
"id": "61e5182e-2e3a-4c4b-8a29-cfea3d24ddd9",
"displayPrice": {
"amount": 19900,
"currency": "USD"
}
}
]
},
{
"id": "d443e087-efcf-47a1-8465-7fa3e60cf916",
"title": "Switch 24",
"shortDescription": "A 24-port, Layer 2 switch with a silent, fanless cooling system.",
"slug": "usw-24",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/d443e087-efcf-47a1-8465-7fa3e60cf916/cb541c51-a867-4518-b8a5-3590597b3160.png"
},
"variants": [
{
"id": "e30ecb61-c7ab-4aa8-9c9f-51cfd842262b",
"displayPrice": {
"amount": 22500,
"currency": "USD"
}
}
]
},
{
"id": "617cf7f2-97cd-4755-9278-7f49090daabd",
"title": "Horizontal Rack Cable Management",
"shortDescription": "Managing cables horizontally within the rack cabinet.",
"slug": "uacc-rack-hcm",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/617cf7f2-97cd-4755-9278-7f49090daabd/dfbfe0a7-d503-46b7-a758-11e1f47376a6.png"
},
"variants": [
{
"id": "b24c77b3-f076-437f-802f-c9d07052d6df",
"displayPrice": {
"amount": 2900,
"currency": "USD"
}
}
]
},
{
"id": "41b1bff2-10cf-45d0-be7f-46180e95e60d",
"title": "Camera G3 Flex",
"shortDescription": "Full HD (1080p) mini turret camera with infrared LEDs and versatile mounting options for indoor and outdoor installations.",
"slug": "uvc-g3-flex",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/41b1bff2-10cf-45d0-be7f-46180e95e60d/3ff54778-615d-4d4a-b609-8cca1823b7aa.png"
},
"variants": [
{
"id": "7023e28c-ca79-494a-b248-373788dce89d",
"displayPrice": {
"amount": 7900,
"currency": "USD"
}
},
{
"id": "14924b05-1a68-4be9-8375-77e752e0355a",
"displayPrice": {
"amount": 22500,
"currency": "USD"
}
}
]
},
{
"id": "984725ff-e0cc-4bf9-8673-88a6515cf0d4",
"title": "10G Direct Attach Cable",
"shortDescription": "SFP+ direct attach cable with a 10 Gbps max data rate.",
"slug": "10gbps-direct-attach-cable",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/984725ff-e0cc-4bf9-8673-88a6515cf0d4/49fa943a-6c12-4211-b204-09c98b9f793c.png"
},
"variants": [
{
"id": "221d6b24-8d54-45d7-a769-ed14d5288c6a",
"displayPrice": {
"amount": 1300,
"currency": "USD"
}
},
{
"id": "bdfe91c7-892a-442b-910b-8ce11b4d3b0a",
"displayPrice": {
"amount": 1500,
"currency": "USD"
}
},
{
"id": "54be20c9-df6f-4bd4-8496-554e1696c13e",
"displayPrice": {
"amount": 2000,
"currency": "USD"
}
}
]
},
{
"id": "8c23291f-02aa-460a-a9bb-22cdf8cd3d5f",
"title": "Access Ultra",
"shortDescription": "An access reader with a built-in hub for complete, single-door entry control from one device.",
"slug": "ua-ultra",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/8c23291f-02aa-460a-a9bb-22cdf8cd3d5f/b4949bf1-cd6c-4ff5-8f17-23f3a270c78a.png"
},
"variants": [
{
"id": "97da48e0-e987-4243-916e-2c29d0e9c5b5",
"displayPrice": {
"amount": 12900,
"currency": "USD"
}
}
]
},
{
"id": "f433d754-48f1-418e-b9cb-5cbdad450cde",
"title": "Access Point U6 Enterprise In-Wall",
"shortDescription": "Wall-mounted WiFi 6E AP with 10 spatial streams, 6 GHz support, and a built-in 4-port switch. Designed for high-density office networks.",
"slug": "u6-enterprise-iw",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/f433d754-48f1-418e-b9cb-5cbdad450cde/55fb0115-6a19-4d49-b1b8-5b52e00ad4d9.png"
},
"variants": [
{
"id": "0730689f-bd97-44ba-8ead-d3f516f30dad",
"displayPrice": {
"amount": 29900,
"currency": "USD"
}
}
]
},
{
"id": "722ba922-997a-4639-a533-ff1fa3b2b478",
"title": "WiFiMan Wizard",
"shortDescription": "A portable spectrum analyzer designed for the WiFiMan iOS and Android mobile app.",
"slug": "wm-w",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/722ba922-997a-4639-a533-ff1fa3b2b478/10818443-ed34-496e-87bf-4cea65d90853.png"
},
"variants": [
{
"id": "daa57474-d5b9-478b-ab48-81ee0d0564f1",
"displayPrice": {
"amount": 9900,
"currency": "USD"
}
}
]
},
{
"id": "a2c760a8-9383-4c1d-895b-67a6b87b94c5",
"title": "Connect Display Surface Mount",
"shortDescription": "Surface Mount for UniFi Connect Display.",
"slug": "uacc-display-sm",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/a2c760a8-9383-4c1d-895b-67a6b87b94c5/e932237d-8746-4af5-a0f1-254400f9e028.png"
},
"variants": [
{
"id": "70433fec-83eb-4ab5-8297-056db53f7bed",
"displayPrice": {
"amount": 12900,
"currency": "USD"
}
}
]
},
{
"id": "be843d02-6814-440b-8d84-6b3f0f0435e1",
"title": "Omni Antenna \u0026 Desktop Stand Kit",
"shortDescription": "Omnidirectional antenna kit for the Swiss Army Knife that provides extended range coverage.",
"slug": "uacc-uk-ultra-omni-antenna",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/be843d02-6814-440b-8d84-6b3f0f0435e1/55eb023b-1770-4b39-82c6-9b53298e8a3b.png"
},
"variants": [
{
"id": "0e009b0a-0525-4678-a945-288b6315bcc5",
"displayPrice": {
"amount": 1900,
"currency": "USD"
}
}
]
},
{
"id": "51e22689-9b81-4717-beed-fe2c65c57362",
"title": "Switch Pro Max 48 PoE",
"shortDescription": "A 48-port, Layer 3 Etherlighting™ switch with 2.5 GbE and PoE++ output.",
"slug": "usw-pro-max-48-poe",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/51e22689-9b81-4717-beed-fe2c65c57362/836c5725-38ba-4c75-a886-a7eea87db215.png"
},
"variants": [
{
"id": "2322c297-5ec3-499f-95d4-be9114e3c0e0",
"displayPrice": {
"amount": 129900,
"currency": "USD"
}
}
]
},
{
"id": "052e61ec-7d2b-4fac-80ed-1d7aa134b409",
"title": "Access G3 Reader Pro",
"shortDescription": "Third-generation, indoor/outdoor NFC reader and intercom with Apple Touch Pass support.",
"slug": "ua-g3-pro",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/052e61ec-7d2b-4fac-80ed-1d7aa134b409/b7f8225a-59cf-4592-8598-be7bda65c0a5.png"
},
"variants": [
{
"id": "24b6a038-2468-4e6e-9c20-9181b00dfb40",
"displayPrice": {
"amount": 37900,
"currency": "USD"
}
},
{
"id": "55778cdf-c0b9-47f8-9989-7e65b1900733",
"displayPrice": {
"amount": 37900,
"currency": "USD"
}
}
]
},
{
"id": "4ed25b4c-db92-4b98-bbf3-b0989f007c0e",
"title": "UniFi Express",
"shortDescription": "Impressively compact Cloud Gateway and WiFi 6 AP that runs UniFi Network. Powers an entire network or simply meshes as an AP.",
"slug": "ux",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/4ed25b4c-db92-4b98-bbf3-b0989f007c0e/ce9d8e10-f4e0-4453-8425-a8181db8fca7.png"
},
"variants": [
{
"id": "97623cc5-0e37-41ff-9987-7bdc920837be",
"displayPrice": {
"amount": 14900,
"currency": "USD"
}
}
]
},
{
"id": "6f13cf4c-52d4-43f9-8c64-ec92c6d11f81",
"title": "Cat6A Keystone Coupler, 12-Pack",
"shortDescription": "Pass-through Cat6A keystone coupler for connecting pre-terminated Ethernet cables seamlessly.",
"slug": "uacc-keystone-coupler-c6a",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/6f13cf4c-52d4-43f9-8c64-ec92c6d11f81/97e7a6f9-5ee7-4fc4-9d0c-34f35f159384.png"
},
"variants": [
{
"id": "04655034-2ec3-40b6-98ed-55c2cf57507a",
"displayPrice": {
"amount": 3900,
"currency": "USD"
}
}
]
},
{
"id": "dacb316d-b254-40a0-8994-04bbf39bbddf",
"title": "SFP+ to RJ45 Adapter",
"shortDescription": "SFP+ to RJ45 transceiver module that supports 10G connections up to 100 m.",
"slug": "uacc-cm-rj45-mg",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/dacb316d-b254-40a0-8994-04bbf39bbddf/11c64b84-8bd1-43d1-b2dd-899305d8bb96.png"
},
"variants": [
{
"id": "09849286-8e48-449d-8a01-aa333f6b147d",
"displayPrice": {
"amount": 6500,
"currency": "USD"
}
}
]
},
{
"id": "9640b40d-0c58-4e5e-bdf9-47a3a4b16e32",
"title": "Dome Camera Weather Shield",
"shortDescription": "Dome camera accessory for optimal image quality and protection from the elements when installed outdoors on a wall or pole.",
"slug": "uacc-dome-ws",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/9640b40d-0c58-4e5e-bdf9-47a3a4b16e32/1b587bfb-1c71-4587-adb5-85e1125ae165.png"
},
"variants": [
{
"id": "c08ae9d4-af84-460a-ad11-8d5a661b92e5",
"displayPrice": {
"amount": 2900,
"currency": "USD"
}
}
]
},
{
"id": "a7142477-c706-430b-8459-f41fac09d09d",
"title": "AI Dome Camera Flush Mount",
"shortDescription": "Dome camera mounting accessory for recessed installation into a wall or ceiling.",
"slug": "uacc-dome-fm",
"thumbnail": {
"url": "https://cdn.ecomm.ui.com/products/a7142477-c706-430b-8459-f41fac09d09d/3f1e6d37-a717-48b6-9993-80d3485f27cf.png"
},
"variants": [
{
"id": "b4d36569-905d-4b0f-a8f9-fa9ea3f4c652",
"displayPrice": {
"amount": 3900,
"currency": "USD"
}
}