-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathcompanies.json
11213 lines (11213 loc) · 445 KB
/
companies.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
[
{
"companyId": "136118787",
"url": "www.nvidia.com",
"foundingYear": "1993",
"totalFundingAmount": "7367000",
"isPublic": "Public",
"name": "NVIDIA",
"pageTitle": "NVIDIA",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_120,h_120,c_fit/nvidia.com",
"numberOfEmployees": "29600",
"fullName": "NVIDIA Corp",
"companyIds": [
"405962156",
"358828640",
"511418714",
"350809072",
"1203449722",
"1272680511",
"441560872",
"563282075",
"372716936",
"370098556",
"346168143",
"136118787",
"450624153"
],
"doziParsedIndustries": [
{
"name": "Computer Equipment & Peripherals",
"link": "/companies-search/industry-computer-equipment-peripherals",
"primary": true
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing",
"primary": true
}
],
"address": {
"street": "2788 San Tomas Expy",
"city": "Santa Clara",
"state": "California",
"country": "United States",
"zip": "95051"
},
"fax": "(408) 486-2200",
"techUsed": [
{
"id": 100213,
"name": "Solidworks",
"logo": "https://storage.googleapis.com/datanyze-data//technologies/531e987e9de45ae555ce1bfee36fe805d2338295.png",
"vendorFullName": "Dassault Systèmes SE",
"vendorDisplayName": "Dassault Systèmes",
"vendorId": "44715327"
},
{
"id": 101325,
"name": "OpenText Vendor Invoice Management",
"logo": "https://storage.googleapis.com/datanyze-data//technologies/d261bbfeab3a3c68ff259a37fc01636fb59694df.jpeg",
"vendorFullName": "Open Text Corp",
"vendorDisplayName": "OpenText",
"vendorId": "38257386"
},
{
"id": 1019,
"name": "Microsoft IIS",
"logo": "https://storage.googleapis.com/datanyze-data//technologies/3b992b773ab3fce3ad0bdaaec38eaba8fb6e2f69.png",
"vendorFullName": "Microsoft Corp",
"vendorDisplayName": "Microsoft",
"vendorId": "24904409"
},
{
"id": 102773,
"name": "SAP Sybase RAP",
"logo": "https://storage.googleapis.com/datanyze-data//technologies/4d70d63204274d68eb5ab8f6b07252ea749308a5.png",
"vendorFullName": "Sap Ag",
"vendorDisplayName": "SAP",
"vendorId": "65536388"
}
],
"techOwned": [
{
"id": 61153,
"name": "CUDA",
"logo": "https://storage.googleapis.com/datanyze-data/technologies/47f9be7c4109a1c1b2326061579d8ec3426b46a5.png",
"marketShareLink": "market-share/other-audio-video-graphics-software--419/cuda-market-share",
"numberOfCompaniesUsingTech": "1,823",
"techMarketShare": "0.09%",
"technologiesUsageByVendor": {
"companyId": "136118787",
"topCompaniesUsingTech": [
{
"companyId": "358993923",
"name": "Old Dominion University",
"revenue": "103191",
"displayName": "Old Dominion University",
"fullName": "Old Dominion University",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_70,h_70,c_fit/odu.edu",
"url": "/companies/old-dominion-university/358993923"
},
{
"companyId": "21250088",
"name": "KDnuggets",
"revenue": "1052",
"displayName": "KDnuggets",
"fullName": "KDnuggets",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_70,h_70,c_fit/kdnuggets.com",
"url": "/companies/kdnuggets/21250088"
},
{
"companyId": "37536530",
"name": "Target",
"revenue": "106621000",
"displayName": "Target",
"fullName": "Target Corp",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_70,h_70,c_fit/corporate.target.com",
"url": "/companies/target/37536530"
},
{
"companyId": "8310287",
"name": "Alibaba Group",
"revenue": "129281593",
"displayName": "Alibaba Group",
"fullName": "Alibaba Group Holding Ltd",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_70,h_70,c_fit/alibabagroup.com",
"url": "/companies/alibaba-group/8310287"
},
{
"companyId": "114786394",
"name": "Weizmann Institute of Science",
"revenue": "130391",
"displayName": "Weizmann Institute of Science",
"fullName": "Weizmann Institute of Science",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_70,h_70,c_fit/weizmann.ac.il",
"url": "/companies/weizmann-institute-of-science/114786394"
}
],
"numberOfCompaniesUsingTech": "20"
}
}
],
"description": "Founded in 1993, NVIDIA is an AI computing company. The company is headquartered in Santa Clara, California.",
"competitors": [
{
"id": "1507503",
"name": "AMD",
"employees": "26000",
"revenue": "22800000",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/amd.com",
"index": 0,
"companyPageLink": "/c/amd/1507503"
},
{
"id": "18206948",
"name": "ASUS",
"employees": "17000",
"revenue": "15227511",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/asus.com",
"index": 1,
"companyPageLink": "/c/asus/18206948"
},
{
"id": "180798457",
"name": "MediaTek",
"employees": "40512",
"revenue": "14567325",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/mediatek.com",
"index": 2,
"companyPageLink": "/c/mediatek/180798457"
},
{
"id": "167543414",
"name": "NXP",
"employees": "34200",
"revenue": "13280000",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/nxp.com",
"index": 3,
"companyPageLink": "/c/nxp/167543414"
},
{
"id": "234914216",
"name": "Qualcomm",
"employees": "50000",
"revenue": "36410000",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/qualcomm.com",
"index": 4,
"companyPageLink": "/c/qualcomm/234914216"
},
{
"id": "50495653",
"name": "Texas Instruments",
"employees": "34000",
"revenue": "16800000",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/ti.com",
"index": 5,
"companyPageLink": "/c/texas-instruments/50495653"
},
{
"id": "5619763",
"name": "Broadcom",
"employees": "20000",
"revenue": "42619000",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/broadcom.com",
"index": 6,
"companyPageLink": "/c/broadcom/5619763"
},
{
"id": "72090875",
"name": "Infineon",
"employees": "59364",
"revenue": "16688102",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_52,h_52,c_fit/infineon.com",
"index": 7,
"companyPageLink": "/c/infineon/72090875"
},
{
"id": "PLACEHOLDER",
"name": "More similar companies"
}
],
"fundings": {
"data": [
{
"date": "May 23, 2017",
"amountValue": "4000000",
"amountLabel": "$4B",
"round": "Share Placement",
"investorsLabel": [
"SoftBank"
]
},
{
"date": "Sep 13, 2016",
"amountValue": "2000000",
"amountLabel": "$2B",
"round": "Debt",
"investorsLabel": [
"Undisclosed"
]
},
{
"date": "Nov 26, 2013",
"amountValue": "1300000",
"amountLabel": "$1.3B",
"round": "Debt",
"investorsLabel": [
"Undisclosed"
]
},
{
"date": "Aug 09, 2010",
"amountValue": "25000",
"amountLabel": "$25M",
"round": "Grant",
"investorsLabel": [
"U.S. Pentagon"
]
},
{
"date": "Jan 22, 1999",
"amountValue": "42000",
"amountLabel": "$42M",
"round": "Stock Issuance/Offering",
"investorsLabel": [
"Undisclosed"
]
}
],
"totals": {
"totalAmount": "$7.4B",
"lastFundingAmount": "$4B",
"numOfRounds": 5
}
},
"acquisitions": [
{
"id": "1155759153",
"name": "Mellanox Technologies",
"date": "Jul 18, 2022"
},
{
"id": "24477911",
"name": "Mellanox Technologies",
"date": "Jul 18, 2022"
},
{
"id": "28902389",
"name": "Kotura",
"date": "Jul 18, 2022"
},
{
"id": "1142839998",
"name": "EZchip Technologies",
"date": "Jul 18, 2022"
},
{
"id": "243728625",
"name": "Tilera",
"date": "Jul 18, 2022"
},
{
"id": "1159378802",
"name": "NVIDIA Mellanox",
"date": "Jul 18, 2022"
},
{
"id": "25363262",
"name": "ModViz",
"date": "Jul 18, 2022"
},
{
"id": "1320112281",
"name": "Brev.dev",
"date": "Jul 18, 2022"
},
{
"id": "81412390",
"name": "Sirific Wireless",
"date": "Jul 18, 2022"
},
{
"id": "37290578",
"name": "NovodeX",
"date": "Jul 18, 2022"
},
{
"id": "47778213",
"name": "Meqon",
"date": "Jul 18, 2022"
},
{
"id": "565522269",
"name": "OmniML",
"date": "Jun 10, 2022"
},
{
"id": "564608068",
"name": "Shoreline",
"date": "Mar 28, 2022"
},
{
"id": "549207686",
"name": "ULi",
"date": "Jul 15, 2021"
},
{
"id": "507382649",
"name": "Titan IC",
"date": "Aug 27, 2020"
},
{
"id": "482993107",
"name": "Deci",
"date": "May 24, 2020"
},
{
"id": "468334839",
"name": "Run:AI",
"date": "Apr 03, 2019"
},
{
"id": "372808958",
"name": "Cigol Digital Systems",
"date": "Feb 02, 2016"
},
{
"id": "371625353",
"name": "Excelero",
"date": "Dec 01, 2015"
},
{
"id": "358946999",
"name": "Oski Technology",
"date": "Mar 31, 2014"
},
{
"id": "358741269",
"name": "Integrity Project",
"date": "Mar 08, 2014"
},
{
"id": "348573955",
"name": "Bright Computing",
"date": "Jun 23, 2012"
},
{
"id": "346785953",
"name": "Cumulus Networks",
"date": "Mar 09, 2012"
},
{
"id": "353103285",
"name": "IPtronics",
"date": "Nov 21, 2009"
}
],
"overview": {
"ticker": "NASDAQ:NVDA",
"sic": [
"73",
"737"
],
"naics": [
"54",
"541"
],
"socialNetworkUrls": [
{
"socialNetworkType": "LINKED_IN",
"socialNetworkUrl": "http://www.linkedin.com/company/nvidia"
},
{
"socialNetworkType": "TWITTER",
"socialNetworkUrl": "http://www.twitter.com/nvidia"
},
{
"socialNetworkType": "FACEBOOK",
"socialNetworkUrl": "http://www.facebook.com/nvidia"
}
],
"names": [
"Nvidia Corp",
"Nvidia",
"nvidia GmbH",
"Nvidia Ltd",
"Nvidia Inc"
],
"picUrl": "/pic/nvidia-corp/136118787",
"updateCompanyLink": "https://privacyrequest.zoominfo.com/company/verify?companyId=136118787"
},
"about": {
"industries": [
{
"name": "Computer Networking Equipment",
"link": "/companies-search/industry-computer-networking-equipment"
},
{
"name": "Network Security Hardware & Software",
"link": "/companies-search/industry-network-security-hardware-software"
},
{
"name": "Computer Equipment & Peripherals",
"link": "/companies-search/industry-computer-equipment-peripherals"
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing"
}
],
"phone": "(408) 486-2000",
"website": "//www.nvidia.com",
"displayLink": "www.nvidia.com",
"revenue": "79774000",
"publicTickerName": "NVDA",
"locationString": "2788 San Tomas Expy, Santa Clara, California, 95051, United States"
},
"newsFeed": [
{
"url": "https://finance.yahoo.com/news/buy-dip-super-micro-stock-143700410.html",
"title": "Should You Buy the Dip on Super Micro Stock?",
"content": "Are the recent declines a buying opportunity or early signs of a deeper problem?",
"date": "2024-09-03T02:37:00Z",
"domain": "finance.yahoo.com"
},
{
"url": "https://www.baystreet.ca/stockstowatch/18893/Todays-Trades-Intel-Nvidia-Nu-Holdings",
"title": "Today's Trades: Intel, Nvidia, Nu Holdings - Baystreet.ca",
"content": "Investors who gave up on Intel (INTC) at around $20.00 missed out on the stock’s rally last week. INTC stock closed at $22.04 after markets speculated that the company would spin off its money-losing foundry operations.\r\r\n\r\r\nFormer Board member Lip-Bu ...",
"date": "2024-09-03T01:24:00Z",
"domain": "www.baystreet.ca"
},
{
"url": "https://finance.yahoo.com/news/5-things-know-stock-market-114811988.html",
"title": "5 Things to Know Before the Stock Market Opens",
"content": "News of the day for September 3, 2024",
"date": "2024-09-03T11:48:00Z",
"domain": "finance.yahoo.com"
},
{
"url": "https://finance.yahoo.com/news/now-time-buy-nvidia-stock-112500965.html",
"title": "Is Now the Time to Buy Nvidia Stock?",
"content": "The semiconductor giant is seeing strong sales, yet its share price dropped recently.",
"date": "2024-09-03T11:25:00Z",
"domain": "finance.yahoo.com"
},
{
"url": "https://finance.yahoo.com/news/wall-street-predicted-nvidia-stock-095000983.html",
"title": "Wall Street Predicted Nvidia Stock Was Headed Lower Before the Company's Q2 Update. Here's What Analysts Think Now.",
"content": "Wall Street appears to have a lot of \"bullish bears\" or \"bearish bulls\" when it comes to Nvidia.",
"date": "2024-09-03T09:50:00Z",
"domain": "finance.yahoo.com"
}
],
"executives": {
"CFO": {
"personId": "1481286906",
"fullName": "Colette Kress",
"title": "Executive VP & Chief Financial Officer",
"picture": "https://s3.amazonaws.com/cms.ipressroom.com/219/files/20149/544a87b1f6091d588d000184_Colette_Kress/Colette_Kress_s.jpg",
"personUrl": "/p/Colette-Kress/1481286906",
"orgChartTier": 2
},
"CTO": {
"personId": "7200420401",
"fullName": "Michael Kagan",
"title": "Chief Technology Officer",
"picture": "https://blogs.nvidia.com/wp-content/uploads/2022/03/Michael-Kagan-2022-200x200.jpg",
"personUrl": "/p/Michael-Kagan/7200420401",
"orgChartTier": 2
}
},
"orgChart": {
"firstTier": {
"isEmpty": true,
"fullName": "",
"title": ""
},
"secondTier": [
{
"personId": "1481286906",
"fullName": "Colette Kress",
"title": "Executive VP & Chief Financial Officer",
"picture": "https://s3.amazonaws.com/cms.ipressroom.com/219/files/20149/544a87b1f6091d588d000184_Colette_Kress/Colette_Kress_s.jpg",
"personUrl": "/p/Colette-Kress/1481286906",
"orgChartTier": 2
},
{
"personId": "-2092019146",
"fullName": "Scott Voori",
"title": "General Manager & Chief Operating Officer, Multimedia",
"picture": "",
"personUrl": "/p/Scott-Voori/-2092019146",
"orgChartTier": 2
},
{
"isEmpty": true,
"fullName": "",
"title": ""
}
],
"btnContent": {
"text": "See Full Org Chart",
"testVariant": "Control"
}
},
"pic": [
{
"personId": "4136981089",
"fullName": "Ran Trester",
"title": "Financial Controller",
"picture": "",
"personUrl": "/p/Ran-Trester/4136981089",
"orgChartTier": 3
},
{
"personId": "1481286906",
"fullName": "Colette Kress",
"title": "Executive VP & Chief Financial Officer",
"picture": "https://s3.amazonaws.com/cms.ipressroom.com/219/files/20149/544a87b1f6091d588d000184_Colette_Kress/Colette_Kress_s.jpg",
"personUrl": "/p/Colette-Kress/1481286906",
"orgChartTier": 2
},
{
"personId": "-1873357118",
"fullName": "Prachi Khadilkar",
"title": "Senior Memory Controller Verification Engineer",
"picture": "",
"personUrl": "/p/Prachi-Khadilkar/-1873357118",
"orgChartTier": 3
},
{
"personId": "-939821680",
"fullName": "Richard Carter",
"title": "Controller",
"picture": "",
"personUrl": "/p/Richard-Carter/-939821680",
"orgChartTier": 3
},
{
"personId": "-2092019146",
"fullName": "Scott Voori",
"title": "General Manager & Chief Operating Officer, Multimedia",
"picture": "",
"personUrl": "/p/Scott-Voori/-2092019146",
"orgChartTier": 2
},
{
"personId": "1960757800",
"fullName": "Chen Carmel",
"title": "Budget Controller",
"picture": "",
"personUrl": "/p/Chen-Carmel/1960757800",
"orgChartTier": 3
},
{
"personId": "2725394185",
"fullName": "Nesya Yavor",
"title": "Budget Controller",
"picture": "",
"personUrl": "/p/Nesya-Yavor/2725394185",
"orgChartTier": 3
},
{
"personId": "2029296311",
"fullName": "Pavan Panchapakeshan",
"title": "Senior Memory Controller Verification Engineer",
"picture": "",
"personUrl": "/p/Pavan-Panchapakeshan/2029296311",
"orgChartTier": 3
},
{
"personId": "2861604426",
"fullName": "Matan Sonenzon",
"title": "Staff Operations Controller",
"picture": "",
"personUrl": "/p/Matan-Sonenzon/2861604426",
"orgChartTier": 3
}
],
"scoops": [
{
"description": "NVIDIA has more open roles in Customer Service / Support than it has had at any time in the past 12 months.",
"date": "2024-08-23T00:00:00.000Z",
"types": [
"Hiring Plans"
],
"topics": [],
"isBlurred": true
},
{
"description": "NVIDIA has partnered with Fortanix and Xeureka to reduce the time and cost associated with drug discovery by providing the Confidential Computing-enabled NVIDIA H100 Tensor Core GPU, giving the project hardware capable of running AI models in a secure environment.",
"date": "2024-08-22T07:00:00.000Z",
"types": [
"Project"
],
"topics": [
"Partnership",
"Information Security",
"Digital Technology",
"Cyber Security",
"Enterprise Software",
"Security",
"Software",
"Artificial Intelligence",
"Clinical Operations",
"Privacy"
],
"link": "https://www.businesswire.com/news/home/20240822160236/en/Xeureka-Leverages-Confidential-Computing-and-AI-powered-by-Fortanix-and-NVIDIA-to-Transform-the-Pharmaceutical-Development-Process/",
"isBlurred": true
},
{
"description": "NVIDIA has been ranked #6 on Great Place To Work's 2024 PEOPLE Companies that Care list.",
"date": "2024-08-22T00:00:00.000Z",
"types": [
"Award"
],
"topics": [
"Award",
"Workforce Management",
"Company Culture & Policy"
],
"link": "https://www.greatplacetowork.com/best-workplaces/companies-that-care/2024"
},
{
"description": "NVIDIA is currently seeking a Global Sponsors Private Side Director, Sales Executive. (Santa Clara, California, United States)",
"date": "2024-08-19T00:00:00.000Z",
"types": [
"Open Position"
],
"topics": [],
"link": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Director--Strategic-Alliances---CAE-and-EDA_JR1986045"
},
{
"description": "NVIDIA is currently seeking a Food Service Assistant & Director. (Durham, California, United States)",
"date": "2024-08-19T00:00:00.000Z",
"types": [
"Open Position"
],
"topics": [],
"link": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-NC-Durham/Technical-Product-Manager--RAPIDS_JR1985095"
}
],
"copilotContent": {
"signals": [
{
"signal": "Check if <span class=\"bold-name\">NVIDIA</span> has recently received funding, and reach out quickly before it becomes old news!",
"originalSignal": "Check if {company_name} has recently received funding, and reach out quickly before it becomes old news!"
},
{
"signal": "Check out if <span class=\"bold-name\">NVIDIA</span> is spiking on competitors!",
"originalSignal": "Check out if {company_name} is spiking on competitors!"
},
{
"signal": "<span class=\"bold-name\">NVIDIA</span>, which may be a good buyer, showed buying intent in <span class=\"masked-content\">Masked Content</span> Topic",
"originalSignal": "{company_name}, which may be a good buyer, showed buying intent in {masked_content} Topic"
},
{
"signal": "Congratulate <span class=\"masked-content\">Masked Content</span> for being promoted to <span class=\"masked-content\">Masked Content</span> at <span class=\"bold-name\">NVIDIA</span>",
"originalSignal": "Congratulate {masked_content} for being promoted to {masked_content} at {company_name}"
},
{
"signal": "Competitive Alert! Recent activity has been detected by your competitor <span class=\"masked-content\">Masked Content</span>",
"originalSignal": "Competitive Alert! Recent activity has been detected by your competitor {masked_content}"
},
{
"signal": "Earning: See what the market has to say on <span class=\"bold-name\">NVIDIA</span> recently announced quarterly report",
"originalSignal": "Earning: See what the market has to say on {company_name} recently announced quarterly report"
},
{
"signal": "Website visits: Recent activity has been detected on your website",
"originalSignal": "Website visits: Recent activity has been detected on your website"
},
{
"signal": "Funding: Get notified immidiatlly once <span class=\"bold-name\">NVIDIA</span> has new funding data",
"originalSignal": "Funding: Get notified immidiatlly once {company_name} has new funding data"
},
{
"signal": "Product Launch: Get notified with <span class=\"bold-name\">NVIDIA</span> new products launch",
"originalSignal": "Product Launch: Get notified with {company_name} new products launch"
},
{
"signal": "Click to see if <span class=\"bold-name\">NVIDIA</span> had a recent Job posting/layoffs",
"originalSignal": "Click to see if {company_name} had a recent Job posting/layoffs"
}
],
"recommendedActions": [
{
"contentLogo": "/ge-assets/common/2023_email.svg",
"ctaText": "Send Email",
"ctaAction": "ClickedSendEmailCoP",
"originalAction": "Find VP level buyers at {company_name_regular}",
"ctaLogo": "/ge-assets/common/ai-email-logo.svg",
"content": "<img class=\"lazy\" height=\"16\" width=\"16\" src=\"/ge-assets/common/2023_email.svg\" alt=\"\" style=\"margin-right: 4px; vertical-align:middle;\"/>Find VP level buyers at NVIDIA"
},
{
"contentLogo": "/ge-assets/common/2023_contact.svg",
"ctaText": "Find Buyers",
"ctaAction": "ClickedFindBuyersCoP",
"originalAction": "Find more new buyers",
"content": "<img class=\"lazy\" height=\"16\" width=\"16\" src=\"/ge-assets/common/2023_contact.svg\" alt=\"\" style=\"margin-right: 4px; vertical-align:middle;\"/><span class=\"semi-bold-name\">Find more new buyers</span>"
}
]
},
"ceo": {
"isEmpty": true,
"fullName": "",
"title": "",
"rating": {
"great": 2,
"good": 1,
"ok": 1,
"bad": 1
},
"comparablyCeoData": {
"score": 88,
"percentile": "Top 5%",
"comparedCEOs": [],
"competitorsPageLink": "https://www.comparably.com/companies/nvidia/competitors?utm_source=zi",
"isEqualToZiCeo": false
},
"company": {
"country": "US",
"name": "NVIDIA",
"id": "136118787",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_120,h_120,c_fit/nvidia.com",
"fullName": "NVIDIA Corp",
"domain": "www.nvidia.com",
"numberOfEmployees": "29600",
"industries": [
{
"name": "Computer Networking Equipment",
"link": "/companies-search/industry-computer-networking-equipment"
},
{
"name": "Network Security Hardware & Software",
"link": "/companies-search/industry-network-security-hardware-software"
},
{
"name": "Computer Equipment & Peripherals",
"link": "/companies-search/industry-computer-equipment-peripherals"
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing"
}
],
"address": {
"street": "2788 San Tomas Expy",
"city": "Santa Clara",
"state": "California",
"country": "United States",
"zip": "95051"
},
"doziParsedIndustries": [
{
"name": "Computer Equipment & Peripherals",
"link": "/companies-search/industry-computer-equipment-peripherals",
"primary": true
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing",
"primary": true
}
],
"description": "Founded in 1993, NVIDIA is an AI computing company. The company is headquartered in Santa Clara, California.",
"pageTitle": "NVIDIA"
}
},
"comparablyData": {
"awards": {
"awards": [
"https://a1-static.comparably.com/static/skins/comparably_light/mixins/companies/profile/common/comparably_badges/img/2023/top-rated-outlook-of-2023-large.svg",
"https://a1-static.comparably.com/static/skins/comparably_light/mixins/companies/profile/common/comparably_badges/img/2023/best-ceo-2023-large.svg",
"https://a1-static.comparably.com/static/skins/comparably_light/mixins/companies/profile/common/comparably_badges/img/2023/best-company-culture-2023-large.svg",
"/ge-assets/common/comparably-award-placeholder.svg"
],
"totalAwards": 23,
"awardPageLink": "https://www.comparably.com/companies/nvidia/awards?utm_source=zi"
},
"eNPS": {
"eNPS": 42,
"users": 368,
"promoters": 63,
"passive": 16,
"detractors": 21
},
"companyPageLink": "https://www.comparably.com/companies/nvidia?utm_source=zi"
},
"mgtl": [
{
"title": "C-Level",
"value": 68
},
{
"title": "VP-Level",
"value": 342
},
{
"title": "Director",
"value": 1938
},
{
"title": "Manager",
"value": 4873
},
{
"title": "Non-Manager",
"value": 20928
},
{
"title": "Top Contacts",
"value": 28670
}
],
"user": {
"country": "US"
},
"emailPatterns": [
{
"value": "nvidia.com",
"rank": 0,
"rawpatternstring": "0:nvidia.com:0.61:0.64:0.95:16600",
"sampleemail": "[email protected]",
"usagepercentage": "95.0",
"usagePercentage": 60.8,
"format": "first initials + last"
},
{
"value": "nvidia.com",
"rank": 7,
"rawpatternstring": "7:nvidia.com:0.2:0.18:0.95:16600",
"sampleemail": "[email protected]",
"usagepercentage": "95.0",
"usagePercentage": 17.1,
"format": "first + last initials"
},
{
"value": "nvidia.com",
"rank": 17,
"rawpatternstring": "17:nvidia.com:0.05:0.05:0.95:16600",
"sampleemail": "[email protected]",
"usagepercentage": "95.0",
"usagePercentage": 4.8,
"format": "first initials + middle initials + last"
},
{
"value": "nvidia.com",
"rank": 2,
"sampleemail": "[email protected]",
"usagePercentage": 0,
"format": "first.last"
},
{
"value": "nvidia.com",
"rank": 3,
"sampleemail": "[email protected]",
"usagePercentage": 0,
"format": "first + last"
}
],
"intents": [
{
"topic": "Topic",
"signalScore": "Signal Score"
},
{
"topic": "Cloud Migration",
"signalScore": "100",
"signalsNumber": "3",
"graphVersion": 4,
"randomLocation": "South America",
"yesterdayDate": "9/2/24"
},
{
"topic": "Data Analytics",
"signalScore": "74",
"signalsNumber": "4",
"graphVersion": 5,
"randomLocation": "Africa",
"yesterdayDate": "9/2/24"
},
{
"topic": "",
"signalScore": ""
},
{
"topic": "",
"signalScore": ""
}
],
"topLists": {
"rev": [
{
"companyId": "155353090",
"ticker": "NYSE:WMT",
"name": "Walmart",
"url": "corporate.walmart.com",
"revenue": "657332000",
"headcount": 2100000,
"headquarters": {
"address": {
"street": "702 SW 8th St",
"city": "Bentonville",
"state": "Arkansas",
"country": "United States",
"zip": "72716"
},
"phone": "(479) 273-4000"
},
"description": [
{
"value": "Wal-Mart Stores, Inc. operates retail stores in various formats worldwide. It operates through three segments: Walmart U.S., Walmart International, and Sams Club.",
"type": 2,
"rank": 1
}
],
"industry": [
"Department Stores, Shopping Centers & Superstores",
"Retail"
],
"foundingYear": "1962",
"displayName": "Walmart",
"fullName": "Walmart Inc"
},
{
"companyId": "1475361",
"ticker": "NASDAQ: AMZN",
"name": "Amazon",
"url": "www.amazon.com",
"revenue": "590740000",
"headcount": 1525000,
"headquarters": {
"address": {
"street": "410 Terry Ave N",
"city": "Seattle",
"state": "Washington",
"country": "United States",
"zip": "98109"
},
"phone": "(206) 266-1000"
},
"description": [
{
"value": "Amazon.com, Inc. engages in the retail sale of consumer products in North America and internationally. It operates through the North America, International, and Amazon Web Services (AWS) segments. The company sells merchandise and content purchased for resale from vendors, as well as those offered by third-party sellers through retail Websites, such as amazon.com, amazon.ca, amazon.com.mx, amazon.com.au, amazon.com.br, amazon.cn, amazon.fr, amazon.de, amazon.in, amazon.it, amazon.co.jp, amazon.nl, amazon.es, and amazon.co.uk. It also manufactures and sells electronic devices, including kindle e-readers, fire tablets, fire TVs, and echo, as well as fire phones; and provides Kindle Direct Publishing, an online platform that allows independent authors and publishers to make their books available in the Kindle Store. In addition, the company offers programs that enable sellers to sell their products on its Websites, as well as their own branded Websites; and programs that allow authors, musicians, filmmakers, app developers, and others to publish and sell content. Further, it offers compute, storage, database, and other AWS services, as well as fulfillment, publishing, digital content subscriptions, advertising, and co-branded credit card agreements services. Additionally, the company offers Amazon Prime, an annual membership program, which provides free shipping of various items; access to unlimited streaming of movies and TV episodes; and other services. It serves consumers, sellers, developers, enterprises, and content creators. The company was founded in 1994 and is headquartered in Seattle, Washington.",
"type": 2,
"rank": 1
}
],
"industry": [
"Apparel & Accessories Retail",
"Retail"
],
"foundingYear": "1994",
"displayName": "Amazon",
"fullName": "Amazon.com Inc"
}
],
"emp": [