-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathcompanies.json
More file actions
13017 lines (13017 loc) · 491 KB
/
Copy pathcompanies.json
File metadata and controls
13017 lines (13017 loc) · 491 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
[
{
"companyId": "136118787",
"url": "www.nvidia.com",
"foundingYear": "1993",
"totalFundingAmount": "7367000",
"isPublic": "Public",
"name": "NVIDIA",
"pageTitle": "NVIDIA",
"logo": "https://res.cloudinary.com/zoominfo-images/image/upload/w_70,h_70,c_fit/nvidia.com",
"numberOfEmployees": "36000",
"fullName": "NVIDIA Corp",
"companyIds": [
"405962156",
"450624153",
"1273925130",
"370098556",
"563282075",
"350809072",
"441560872",
"372716936",
"358828640",
"511418714",
"1203449722",
"1272680511",
"136118787",
"346168143"
],
"doziParsedIndustries": [
{
"name": "Computer Equipment & Peripherals",
"link": "/companies-search/industry-computer-equipment-peripherals",
"primary": true,
"code": "mfg.computers?100"
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing",
"primary": true,
"code": "mfg?100"
},
{
"name": "Electronics",
"link": "/companies-search/industry-electronics",
"code": "mfg.electronics?50"
},
{
"name": "Engineering Software",
"link": "/companies-search/industry-engineering-software",
"code": "software.eng?50"
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing",
"code": "mfg?50"
},
{
"name": "Multimedia, Games & Graphics Software",
"link": "/companies-search/industry-multimedia-games-graphics-software",
"code": "software.videogames?50"
},
{
"name": "Software",
"link": "/companies-search/industry-software",
"code": "software?50"
}
],
"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": "3dvia",
"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": "2,421",
"techMarketShare": "0.11%",
"technologiesUsageByVendor": {
"companyId": "136118787",
"topCompaniesUsingTech": [
{
"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": "105881000",
"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": "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"
},
{
"companyId": "8310287",
"name": "Alibaba Group",
"revenue": "136275151",
"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": "126828694",
"name": "Verizon",
"revenue": "137000002",
"displayName": "Verizon",
"fullName": "Verizon Communications Inc",
"logo": "https://res.cloudinary.com/zoominfo-com/image/upload/w_70,h_70,c_fit/verizon.com",
"url": "/companies/verizon/126828694"
}
],
"numberOfCompaniesUsingTech": "20"
}
}
],
"description": "NVIDIA, founded in 1993 and headquartered in Santa Clara, California, is a global technology company specializing in the design and manufacturing of graphics processing units (GPUs), computer hardware, and artificial intelligence computing solutions. The company develops advanced technologies for gaming, professional visualization, data centers, and automotive markets. NVIDIA's products and services power various applications including high-performance computing, machine learning, autonomous vehicles, and cloud-based AI platforms.",
"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": "121569875",
"name": "PortalPlayer",
"date": "Jul 18, 2022"
},
{
"id": "61130392",
"name": "MediaQ",
"date": "Jul 18, 2022"
},
{
"id": "25363262",
"name": "ModViz",
"date": "Jul 18, 2022"
},
{
"id": "24543376",
"name": "Mental Images",
"date": "Jul 18, 2022"
},
{
"id": "49267122",
"name": "The Portland Group",
"date": "Jul 18, 2022"
},
{
"id": "2182354",
"name": "AGEIA",
"date": "Jul 18, 2022"
},
{
"id": "47778213",
"name": "Meqon Roofing Services",
"date": "Jul 18, 2022"
},
{
"id": "37290578",
"name": "NovodeX",
"date": "Jul 18, 2022"
},
{
"id": "5000069816",
"name": "Solver AI",
"date": "Jul 18, 2022"
},
{
"id": "1312389285",
"name": "CentML",
"date": "Jul 18, 2022"
},
{
"id": "64913421",
"name": "3dfx Interactive",
"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": "81412390",
"name": "Sirific Wireless",
"date": "Jul 18, 2022"
},
{
"id": "565522269",
"name": "OmniML",
"date": "Jun 10, 2022"
},
{
"id": "564608068",
"name": "Shoreline",
"date": "Mar 28, 2022"
},
{
"id": "549207686",
"name": "ULi Electronics Inc.",
"date": "Jul 15, 2021"
},
{
"id": "540321967",
"name": "OctoAI Technologies",
"date": "Apr 10, 2021"
},
{
"id": "512887458",
"name": "Deci",
"date": "Nov 09, 2020"
},
{
"id": "507382649",
"name": "Titan IC",
"date": "Aug 27, 2020"
},
{
"id": "481705271",
"name": "Gretel",
"date": "Apr 09, 2020"
},
{
"id": "480872307",
"name": "OptiGOT",
"date": "Feb 18, 2020"
},
{
"id": "408112661",
"name": "DeepMap",
"date": "Jul 09, 2017"
},
{
"id": "399230755",
"name": "Parabricks",
"date": "Jan 06, 2017"
},
{
"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": "348804489",
"name": "SwiftStack",
"date": "Jul 21, 2012"
},
{
"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": [],
"names": [
"Nvidia Corp",
"Nvidia",
"nvidia GmbH",
"Nvidia Ltd",
"Nvidia Inc"
],
"encodedPathPicUrl": "##pic##nvidia-corp##136118787",
"updateCompanyLink": "https://privacyrequest.zoominfo.com/company/verify?companyId=136118787"
},
"about": {
"industries": [
{
"name": "Computer Equipment & Peripherals",
"link": "/companies-search/industry-manufacturing-computers",
"primary": true
},
{
"name": "Software",
"link": "/companies-search/industry-software"
},
{
"name": "Electronics",
"link": "/companies-search/industry-manufacturing-electronics"
},
{
"name": "Manufacturing",
"link": "/companies-search/industry-manufacturing",
"primary": true
},
{
"name": "Engineering Software",
"link": "/companies-search/industry-engineering-software"
},
{
"name": "Multimedia, Games & Graphics Software",
"link": "/companies-search/industry-software-video-games"
}
],
"phone": "(408) 486-2000",
"website": "//www.nvidia.com",
"displayLink": "www.nvidia.com",
"revenue": "148515000",
"publicTickerName": " NVDA",
"locationString": "2788 San Tomas Expy, Santa Clara, California, 95051, United States",
"industryUrlCode": "manufacturing-computers"
},
"newsFeed": [
{
"url": "https://en.prnasia.com/releases/apac/desay-sv-expands-its-intelligent-driving-solutions-to-overseas-market-built-on-nvidia-accelerated-compute-504850.shtml",
"title": "Desay SV Expands Its Intelligent Driving Solutions to Overseas Market, Built on NVIDIA Accelerated Compute",
"content": "MUNICH, Sept. 24, 2025 /PRNewswire/ -- On September 10, Desay SV announced during the International Motor Show Germany (IAA Mobility 2025) that it is expanding its intelligent driving solutions to overseas markets. Specifically, Desay SV will now make its IPU14 domain controller — introduced late last year and built on NVIDIA DRIVE AGX Thor — available to the worldwide automotive industry. NVIDIA & Desay SV Signing Ceremony This latest news was celebrated at a signing ceremony during IAA,",
"date": "2025-09-24T12:49:00Z",
"domain": "en.prnasia.com"
},
{
"url": "https://finance.yahoo.com/news/nvidia-nvda-unveils-next-gen-124550903.html",
"title": "NVIDIA (NVDA) Unveils Next-Gen Rubin CPX AI Chips to Handle Complex Software and Video Tasks",
"content": "NVIDIA Corporation (NASDAQ:NVDA) ranks among the hot stocks to invest in right now. On September 9, NVIDIA Corporation (NASDAQ:NVDA) announced that by the end of next year, it would introduce a new artificial intelligence chip capable of managing sophisticated tasks, including creating software and videos. The “Rubin CPX” chips will be built on NVIDIA’s next-generation […]",
"date": "2025-09-24T12:45:00Z",
"domain": "finance.yahoo.com"
},
{
"url": "https://fortune.com/2025/09/24/nvidia-openai-partnership-catalyst-enterprise-ai-growth-wedbushs-dan-ives-cfo/",
"title": "Nvidia and OpenAI partnership is a catalyst for enterprise AI growth, says Wedbush’s Dan Ives",
"content": "Nvidia will invest up to $100 billion in OpenAI as the artificial intelligence lab sets out to build hundreds of billions of dollars in data centers.",
"date": "2025-09-24T11:55:00Z",
"domain": "fortune.com"
},
{
"url": "https://finance.yahoo.com/news/huawei-bets-brute-force-outpace-104628296.html",
"title": "Huawei Bets On Brute Force To Outpace Nvidia",
"content": "Nvidia (NASDAQ:NVDA) shares pulled back in premarket trading on Tuesday, surrendering some of Monday’s gains following reports that Huawei is aggressively pursuing an alternative path to challenge the U.S. chip designer’s dominance. At its annual ...",
"date": "2025-09-24T10:46:00Z",
"domain": "finance.yahoo.com"
},
{
"url": "https://www.digitimes.com/news/a20250924PD224/nvidia-market-openai-ceo-intel.html",
"title": "Commentary: Analyzing Nvidia's crisis defusing strategy amid the AI bubble storm",
"content": "Nvidia's recent major investments have shocked the market. However, there are widespread views that both Nvidia and its CEO Jensen Huang find themselves at the \"center of the AI bubble storm.\" The question on many minds is: what exactly is Huang's strategic plan?",
"date": "2025-09-24T06:39:00Z",
"domain": "www.digitimes.com"
}
],
"pic": [
{
"personId": "1650455615",
"fullName": "William Wagner",
"title": "Chief Executive Officer",
"picture": "",
"personUrl": "/p/William-Wagner/1650455615",
"orgChartTier": 1,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "William",
"lastName": "Wagner",
"companyCountry": "United States"
},
{
"personId": "935968363",
"fullName": "Jay Puri",
"title": "Executive VP, Worldwide Field Operations",
"picture": "",
"personUrl": "/p/Jay-Puri/935968363",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Jay",
"lastName": "Puri",
"companyCountry": "United States"
},
{
"personId": "2185407563",
"fullName": "Huang Renxun",
"title": "Chief Executive Officer & President",
"picture": "https://s3.amazonaws.com/cms.ipressroom.com/219/files/20242/65fc79fb3d6332b70a3719f6_Jensen-1906-0424/Jensen-1906-0424_thmb.png",
"personUrl": "/p/Huang-Renxun/2185407563",
"orgChartTier": 1,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Huang",
"lastName": "Renxun",
"companyCountry": "United States"
},
{
"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,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Colette",
"lastName": "Kress",
"companyCountry": "United States"
},
{
"personId": "1668333250",
"fullName": "Oren Amit",
"title": "Director of Chief People Officer IC Product Engineering At NVIDIA",
"picture": "",
"personUrl": "/p/Oren-Amit/1668333250",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Oren",
"lastName": "Amit",
"companyCountry": "United States"
},
{
"personId": "7200420401",
"fullName": "Michael Kagan",
"title": "Chief Technology Officer",
"picture": "",
"personUrl": "/p/Michael-Kagan/7200420401",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Michael",
"lastName": "Kagan",
"companyCountry": "United States"
},
{
"personId": "5981554773",
"fullName": "Sun Yao-Ching",
"title": "Senior Chief People Officer & Engineer",
"picture": "",
"personUrl": "/p/Sun-Yao-ching/5981554773",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Sun",
"lastName": "Yao-Ching",
"companyCountry": "United States"
},
{
"personId": "1448376412",
"fullName": "Amit Nagra",
"title": "Vice President Chief People Officer Manufacturing and Supply Chain",
"picture": "",
"personUrl": "/p/Amit-Nagra/1448376412",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Amit",
"lastName": "Nagra",
"companyCountry": "United States"
},
{
"personId": "1752054317",
"fullName": "Tracy McTyer",
"title": "Chief Revenue Officer, Web Strategy & Optimization",
"picture": "",
"personUrl": "/p/Tracy-Mctyer/1752054317",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Tracy",
"lastName": "McTyer",
"companyCountry": "United States"
}
],
"scoops": [
{
"description": "NVIDIA has successfully transitioned to the GB300 rack-based architecture, with full production underway. The current run rate is approximately 1,000 racks per week, expected to accelerate further throughout the third quarter as additional capacity comes online.",
"date": "2025-09-08T00:00:00.000Z",
"types": [
"Project"
],
"topics": [
"Manufacturing Operations"
]
},
{
"description": "NVIDIA has partnered with OpenAI to optimize their open source GPT models for high-quality, fast, and efficient inference on millions of RTX-enabled Windows devices. This collaboration aims to enable Windows developers to create AI applications designed to run on the world's largest AI PC user base.",
"date": "2025-09-08T00:00:00.000Z",
"types": [
"Project"
],
"topics": [
"Software",
"Artificial Intelligence"
]
},
{
"description": "projects $3 to $4 trillion in AI infrastructure spend by the end of the decade, presenting significant long-term growth opportunities for the company.",
"date": "2025-09-08T00:00:00.000Z",
"types": [
"Project"
],
"topics": [
"Infrastructure",
"Forecasting",
"Artificial Intelligence"
]
},
{
"description": "reported an increase in Hopper 100 and H200 shipments in Q3. The company also sold approximately $650 million of H20 to an unrestricted customer outside of China.",
"date": "2025-09-08T00:00:00.000Z",
"types": [
"Earnings"
],
"topics": [
"Earnings",
"Product Launch",
"Finance"
]
},
{
"description": "expects GAAP and non-GAAP other income and expenses to be an income of approximately $500 million for the third quarter, excluding gains and losses from non-marketable and public-held equity securities. GAAP and non-GAAP tax rates are expected to be 16.5%, plus or minus 1%, excluding any discrete items.",
"date": "2025-09-08T00:00:00.000Z",
"types": [
"Earnings"
],
"topics": [
"Earnings",
"Forecasting",
"Finance",
"Tax"
],
"isBlurred": true
}
],
"copilotContent": {
"signals": [
{
"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"
},
{
"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": "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": "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": "Check out if <span class=\"bold-name\">NVIDIA</span> is spiking on competitors!",
"originalSignal": "Check out if {company_name} is spiking on competitors!"
},
{
"signal": "Website visits: Recent activity has been detected on your website",
"originalSignal": "Website visits: Recent activity has been detected on your website"
},
{
"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": "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": "Product Launch: Get notified when <span class=\"bold-name\">NVIDIA</span> launches new products",
"originalSignal": "Product Launch: Get notified when {company_name} launches new products"
},
{
"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!"
}
],
"recommendedActions": [
{
"contentLogo": "/ge-assets/common/2023_email.svg",
"ctaText": "Send Email",
"ctaAction": "ClickedSendEmailCoP",
"originalAction": "Reach out to {masked_content} who joined {company_name_regular} as {masked_content}",
"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;\"/>Reach out to <span class=\"masked-content\">Masked Content</span> who joined NVIDIA as <span class=\"masked-content\">Masked Content</span>"
},
{
"contentLogo": "/ge-assets/common/2023_contact.svg",
"ctaText": "Find Buyers",
"ctaAction": "ClickedFindBuyersCoP",
"originalAction": "Find 3 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 3 more new buyers</span>"
}
]
},
"hierarchyOrgChart": [
{
"personId": "1650455615",
"fullName": "William Wagner",
"title": "Chief Executive Officer",
"picture": "",
"personUrl": "/p/William-Wagner/1650455615",
"orgChartTier": 1,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "William",
"lastName": "Wagner",
"companyCountry": "United States",
"nextLevelList": [
{
"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,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Colette",
"lastName": "Kress",
"companyCountry": "United States",
"nextLevelList": [
{
"personId": "2003485266",
"fullName": "Erin Miner",
"title": "Director, Finance Networking & Business Controller",
"picture": "",
"personUrl": "/p/Erin-Miner/2003485266",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Erin",
"lastName": "Miner",
"companyCountry": "United States"
},
{
"personId": "1310352914",
"fullName": "Donald Robertson",
"title": "Vice President, Chief Accounting Officer",
"picture": "",
"personUrl": "/p/Donald-Robertson/1310352914",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Donald",
"lastName": "Robertson",
"companyCountry": "United States"
},
{
"personId": "1852010466",
"fullName": "Liat Ofer",
"title": "Planning and Control",
"picture": "",
"personUrl": "/p/Liat-Ofer/1852010466",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Liat",
"lastName": "Ofer",
"companyCountry": "United States"
},
{
"personId": "-2050149305",
"fullName": "Dana Barzilay",
"title": "Business Unit Controller",
"picture": "",
"personUrl": "/p/Dana-Barzilay/-2050149305",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Dana",
"lastName": "Barzilay",
"companyCountry": "United States"
},
{
"personId": "1783487068",
"fullName": "Jane Guan",
"title": "Corporate Controller",
"picture": "",
"personUrl": "/p/Jane-Guan/1783487068",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Jane",
"lastName": "Guan",
"companyCountry": "United States"
},
{
"personId": "2029296311",
"fullName": "Pavan Panchapakeshan",
"title": "Senior Memory Controller Verification Engineer",
"picture": "",
"personUrl": "/p/Pavan-Panchapakeshan/2029296311",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Pavan",
"lastName": "Panchapakeshan",
"companyCountry": "United States"
},
{
"personId": "-1873357118",
"fullName": "Prachi Khadilkar",
"title": "Senior Memory Controller Verification Engineer",
"picture": "",
"personUrl": "/p/Prachi-Khadilkar/-1873357118",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Prachi",
"lastName": "Khadilkar",
"companyCountry": "United States"
},
{
"personId": "5309341629",
"fullName": "Gil Tzadaka",
"title": "Nvidia ITPE and SPE Requests and Orders Controller",
"picture": "",
"personUrl": "/p/Gil-Tzadaka/5309341629",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Gil",
"lastName": "Tzadaka",
"companyCountry": "United States"
},
{
"personId": "4253503425",
"fullName": "Efrat Shomer",
"title": "Senior Budget Controller",
"picture": "",
"personUrl": "/p/Efrat-Shomer/4253503425",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Efrat",
"lastName": "Shomer",
"companyCountry": "United States"
},
{
"personId": "2020434083",
"fullName": "Liat Rozenberg",
"title": "Pension Controller",
"picture": "",
"personUrl": "/p/Liat-Rozenberg/2020434083",
"orgChartTier": 3,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Liat",
"lastName": "Rozenberg",
"companyCountry": "United States"
},
{
"isEmpty": true,
"fullName": "",
"title": ""
}
]
},
{
"personId": "7200420401",
"fullName": "Michael Kagan",
"title": "Chief Technology Officer",
"picture": "",
"personUrl": "/p/Michael-Kagan/7200420401",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Michael",
"lastName": "Kagan",
"companyCountry": "United States"
},
{
"personId": "1304004575",
"fullName": "Michael Gray",
"title": "Chief Financial Officer",
"picture": "",
"personUrl": "/p/Michael-Gray/1304004575",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Michael",
"lastName": "Gray",
"companyCountry": "United States"
},
{
"personId": "43792824",
"fullName": "Rebecca Tredway",
"title": "Chief Financial Officer",
"picture": "",
"personUrl": "/p/Rebecca-Tredway/43792824",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Rebecca",
"lastName": "Tredway",
"companyCountry": "United States"
},
{
"personId": "1668333250",
"fullName": "Oren Amit",
"title": "Director of Chief People Officer IC Product Engineering At NVIDIA",
"picture": "",
"personUrl": "/p/Oren-Amit/1668333250",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Oren",
"lastName": "Amit",
"companyCountry": "United States"
},
{
"personId": "935968363",
"fullName": "Jay Puri",
"title": "Executive VP, Worldwide Field Operations",
"picture": "",
"personUrl": "/p/Jay-Puri/935968363",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Jay",
"lastName": "Puri",
"companyCountry": "United States"
},
{
"personId": "67827852",
"fullName": "Debora Shoquist",
"title": "Executive VP, Operations",
"picture": "",
"personUrl": "/p/Debora-Shoquist/67827852",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Debora",
"lastName": "Shoquist",
"companyCountry": "United States"
},
{
"personId": "1752054317",
"fullName": "Tracy McTyer",
"title": "Chief Revenue Officer, Web Strategy & Optimization",
"picture": "",
"personUrl": "/p/Tracy-Mctyer/1752054317",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Tracy",
"lastName": "McTyer",
"companyCountry": "United States"
},
{
"personId": "1448376412",
"fullName": "Nagra Amit",
"title": "Vice President Chief People Officer Manufacturing and Supply Chain",
"picture": "",
"personUrl": "/p/Nagra-Amit/1448376412",
"orgChartTier": 2,
"isLikelyToEngagePhone": false,
"isLikelyToEngageEmail": false,
"firstName": "Nagra",
"lastName": "Amit",
"companyCountry": "United States"
},
{
"personId": "5981554773",
"fullName": "Sun Yao-Ching",
"title": "Senior Chief People Officer & Engineer",