-
Notifications
You must be signed in to change notification settings - Fork 0
/
NewsExample.json
2301 lines (2301 loc) · 147 KB
/
NewsExample.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
[{
"category": "company",
"datetime": 1631179227,
"headline": "Tencent Leads $60 Billion Selloff As Gaming Crackdown Fears Grow",
"id": 70401756,
"image": "https://s.yimg.com/ny/api/res/1.2/GqxZIjDgjUk3HYz.1cj1Mw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://s.yimg.com/uu/api/res/1.2/CCVJvo02fUqKyNGXcMx8bQ--~B/aD0yNjY3O3c9NDAwMDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/bloomberg_technology_68/e7c875c531c474dbb2ae27414da1e419",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- Tencent Holdings Ltd. and Netease Inc. shed more than $60 billion of value as investor fears grow that Chinese regulators are preparing to tighten their grip dramatically on the world’s largest gaming industry.Chinese regulators summoned industry executives to a Wednesday meeting to instruct them to break their “solitary focus” on profit and prevent minors from becoming addicted to games, according to the official Xinhua News Agency. Regulators also said there will be a temporary",
"url": "https://finnhub.io/api/news?id=84c5b4de755ccc3e00ee9c4b208f0861aa73883903a77d5ad317762fbd20a9ee"
}, {
"category": "company",
"datetime": 1631228365,
"headline": "Sheryl Sandberg Says Small Businesses Online Revolution Will Continue",
"id": 70428593,
"image": "https://s.yimg.com/ny/api/res/1.2/ETDo80erXHJuxOCwaoq_Mw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://s.yimg.com/uu/api/res/1.2/WV6Ulbr8mG0eHt3bRj0gwA--~B/aD0xMzM0O3c9MjAwMDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/bloomberg_technology_68/d20da2fd0206df527f593dffa6362437",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- Facebook Inc. Chief Operating Officer Sheryl Sandberg said small businesses will keep choosing the internet to reach their customers even after the pandemic subsides and brick-and-mortar advertising options become more useful.“That digital transformation will continue to happen,” Sandberg said in an interview with Bloomberg News. “It might happen at a slightly slower rate but I think that the transformation and people moving to be online is going to continue to happen.”The Menlo P",
"url": "https://finnhub.io/api/news?id=19a06062957f933704aa32735cf95caa963aec8b1d87db5fc073407a65ab9b7c"
}, {
"category": "company",
"datetime": 1631227222,
"headline": "Apple : MEDIA-Apple fires senior engineering program manager Ashley Gjøvik for allegedly leaking information - Verge",
"id": 70431277,
"image": "",
"related": "AAPL",
"source": "Finnhub",
"summary": "-- Source link: https://bit.ly/2YxCceL -- Note: Reuters has not verified this story and does notvouch for its accuracy ... | September 10, 2021",
"url": "https://finnhub.io/api/news?id=efe075d666077e41df14ddef4d2601e1e0f3e98cf44dd8e55ac4fd6dfda7c331"
}, {
"category": "company",
"datetime": 1631225580,
"headline": "Apple: Things Looking up Ahead of Anticipated September iPhone 13",
"id": 70447369,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?654147703",
"related": "AAPL",
"source": "Nasdaq",
"summary": "After a stodgy period, Apple (AAPL) stock has been gaining momentum recently. With shares up 21% over the past 3 months, the year-to-date performance has materially improved. \n\n\n\nThere’s also a big catalyst ahead too, which Wedbush’ Daniel Ives believes is partly what makes the giant from Cupertino a “top tech name to own.”\n\n\n\n\"The invites are out; iPhone 13 launch around the corner next week,\" Ives noted.\n\n\n\nIves’ “enhanced confidence” in the iPhone 13 product cycle is based on Asia supply chain checks, in which the iPhone 13 makes up 35%-45% of the total 130-150 million iPhone builds in Q3.\n\n\n\nSpecs wise, Ives is confident Apple fans can look forward to an iPhone 13 boasting an “eye-popping” 1 terabyte storage option. This is double the amount of the current 512 GB capacity on offer with the highest Pro unit. The new model and will also include several other “key enhancements” with all iPhone 13 models possessing Lidar capabilities.\n\n\n\nThere’s “massive pent-up demand” amongst Apple’s installed base, says the analyst, pointing out that based on his analysis, over the past 3.5 years, roughly 250 million of the current 975 million iPhone owners have yet to upgrade their handsets.\n\n\n\nElsewhere, Ives thinks Apple remains fairly insulated from the regulators’ ire with all things Big Tech, believing the App Store remains a “very defendable moat both in the courts and in the Beltway.” Facebook and Google are both more likely to get caught in the “anti-trust spider web.”\n\n\n\nApple remains the “favorite large cap tech name to play the 5G transformational cycle,” and as such, Ives sticks with an Outperform (i.e. Buy) rating and $185 price target. The implication for investors? Upside of 20%. (To watch Ives’ track record, click here)\n\n\n\nSo, that’s the Wedbush view, what does the rest of the Street have in mind for Apple? The stock boasts a Moderate Buy consensus rating based on 17 Buys vs. 6 Holds. The average price target is a more modest $166.64, representing 12-month returns of 8%. (See Apple stock analysis on TipRanks)\n\n\n\n\n\n\n\nTo find good ideas for stocks trading at attractive valuations, visit TipRanks’ Best Stocks to Buy, a newly launched tool that unites all of TipRanks’ equity insights.\n\n\n\nDisclaimer: The opinions expressed in this article are solely those of the featured analyst. The content is intended to be used for informational purposes only. It is very important to do your own analysis before making any investment.",
"url": "https://finnhub.io/api/news?id=41cc682cc72336b4c4823e4d369ec7731a97a386428fbbb957839819ca5bceee"
}, {
"category": "company",
"datetime": 1631223360,
"headline": "Epic Games asks Apple to allow Fortnite's re-release in South Korea after passage of new law",
"id": 70447370,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-10T013905Z_1_ET1_RTRLXPP_2_LYNXPACKAGER.JPG?1390060399",
"related": "AAPL",
"source": "Nasdaq",
"summary": "\"Fortnite\" creator Epic Games has asked iPhone maker Apple to restore its Fortnite developer account and intends to re-release the popular game on iOS in South Korea, offering both Epic and Apple payment side-by-side, it said in a tweet.",
"url": "https://finnhub.io/api/news?id=25e422ba2aa635b5b6536b2578e7b75ac9e4265c361d7d5e0177e37b3d3da557"
}, {
"category": "company",
"datetime": 1631221200,
"headline": "Their Phone Chargers Rule Amazon, But Anker Has Bigger Ambitions",
"id": 70428365,
"image": "https://s.yimg.com/ny/api/res/1.2/pBjVtq6VWa47AEUeXka5BQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://s.yimg.com/uu/api/res/1.2/pyRMtLD4SkgZOPa2xgs06Q--~B/aD0xMzMzO3c9MTk5OTthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/bloomberg_technology_68/be31ae7dea5d4f2583e47171e71da2b6",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- A decade ago, then-Googler Steven Yang left California for Chinese technology hub Shenzhen to start Anker Innovations Technology Co Ltd. with less than $1 million in seed capital. Since then, he’s relied on a pioneering strategy of mining consumer reviews on Amazon.com Inc. to pump out some of the world’s most ubiquitous phone accessories.By studying the thousands of reviews and complaints about electronic products posted on the e-commerce platform daily, Yang realized he could re",
"url": "https://finnhub.io/api/news?id=769c2f061e5896e9c6eb1dd75a89741a0fd1414506d46a3fd15b11069fd72fd0"
}, {
"category": "company",
"datetime": 1631220000,
"headline": "Epic Games asks Apple to allow \"Fortnite\" to return in South Korea",
"id": 70447371,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-10T010530Z_1_CH0_RTRLXPP_2_LYNXPACKAGER.JPG?1385172410",
"related": "AAPL",
"source": "Nasdaq",
"summary": "\"Fortnite\" creator Epic Games has asked iPhone maker Apple Inc to restore its Fortnite developer account and intends to re-release Fortnite on iOS in South Korea offering both Epic payment and Apple payment side-by-side, it said in a tweet.",
"url": "https://finnhub.io/api/news?id=9de082e14b550b82c68119eb7f9f4e417b9dfeb00296fb8d1c04558d852b5f32"
}, {
"category": "company",
"datetime": 1631218633,
"headline": "Why Biden can’t fix the semiconductor shortage",
"id": 70428164,
"image": "https://s.yimg.com/ny/api/res/1.2/ub4A5VGXbpFIQ9CkBO0iDg--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDE-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/e5c12850-7712-11eb-bed7-ff59768d247a",
"related": "AAPL",
"source": "Yahoo",
"summary": "No matter how vital chips may be, there's no simple fix for shortages in a sector where overcapacity can be deadly.",
"url": "https://finnhub.io/api/news?id=47c1c68ae65dc2a771f0cac178c1498c05bde9689bd14dcf1a74d252b24e7399"
}, {
"category": "company",
"datetime": 1631218541,
"headline": "Amazon Lights Fire Under Hot TV Market With Branded Set Of Devices",
"id": 70428596,
"image": "https://s.yimg.com/uu/api/res/1.2/RTN0CDheB.EFq.QhflmaUQ--~B/aD01NjM7dz0xMDAwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/ibd.com/03547db8e4ed73edea51f94e64670bdc",
"related": "AAPL",
"source": "Yahoo",
"summary": "Amazon pushed deeper into the television market Thursday, announcing an all-new lineup of devices and its first Amazon-branded 4K smart TVs.",
"url": "https://finnhub.io/api/news?id=f73d2ce4abfbb90370f48ddfa3ae87d424ef3fba8f9ec95c1d618d1b24701cd9"
}, {
"category": "company",
"datetime": 1631217600,
"headline": "Samsung decision on new U.S. chip plant location 'imminent' -Texas county judge",
"id": 70446833,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T223412Z_240577150_RC2MMP9HIS07_RTRMADP_2_SAMSUNG-ELEC-USA.JPG?73708146",
"related": "AAPL",
"source": "Nasdaq",
"summary": "A decision by Samsung Electronics on the location of its new $17 billion U.S. chip plant was imminent, the judge for Texas' Williamson County, which is in the running for the new factory, said on Thursday.",
"url": "https://finnhub.io/api/news?id=f5c6d9605e8ed8b0bca804031e4b19780594e7ddcc4c5ed1877a88ca149a74d9"
}, {
"category": "company",
"datetime": 1631213728,
"headline": "Apple’s Watch Software Chief Takes Over Self-Driving Car Project",
"id": 70428597,
"image": "https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo-1200x1200.png",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- Apple Inc. appointed one of its top software executives, Kevin Lynch, to oversee its nascent self-driving car project after the previous leader left for Ford Motor Co. Lynch, an Adobe Inc. veteran who joined Apple in 2013 to run the software group for the company’s smartwatch and health efforts, replaced Doug Field as the manager in charge of the car work, according to people with knowledge of the matter.The executive first started working on the project earlier this year when he",
"url": "https://finnhub.io/api/news?id=32081eb2d1db0773deadf692fb1f0092485f297c4d335f6f494342272aba69d5"
}, {
"category": "company",
"datetime": 1631211452,
"headline": "Google’s Medical Chief Says Company Shifting Health Focus",
"id": 70428598,
"image": "https://s.yimg.com/ny/api/res/1.2/o1UdUFjWmUHdSfsAiXDV0A--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD03OTk-/https://s.yimg.com/uu/api/res/1.2/2Ldk3hUHCkDOwbTAWRjesQ--~B/aD0xMzMyO3c9MjAwMDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/bloomberg_technology_68/34cadf7bfe2a735cbdaa8bcdea26ce0c",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- In August, the leader of Google Health departed and the division dissolved. While some interpreted the moves as evidence that Google was retreating from health care, the company’s chief health officer said the changes reflected a shifting focus, not an abandonment of a sector the search giant has trumpeted as a promising future business. “We are not retrenching on health,” Karen DeSalvo said in an interview. “I’m busier than ever. So is my team.”She framed Google’s strategy as an",
"url": "https://finnhub.io/api/news?id=a5fd6309551a729983ed029018d2b70ff7e58c62c7aaa25eb2d77c23051ccfcf"
}, {
"category": "company",
"datetime": 1631210778,
"headline": "Why the market is responding favorably to airline stocks",
"id": 70428599,
"image": "https://s.yimg.com/ny/api/res/1.2/cwC96wU25WTifW9iK6XX_w--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzQ-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/09/613a4d1bd024e653656ce91f/613a4d1bd024e653656ce920_o_U_v2.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Ann Berry, Wheelhouse Chief Investment Officer, joins Yahoo Finance to discuss the outlook on the overall market, the airlines industry, big tech, and the IPO market.",
"url": "https://finnhub.io/api/news?id=f2f1a4bb0b63630aae7406d3b9caa5ec649657462e040181abfb5caa6252892e"
}, {
"category": "company",
"datetime": 1631209759,
"headline": "Tech Support: Should you buy the new iPhone",
"id": 70428600,
"image": "https://s.yimg.com/ny/api/res/1.2/fjjWGdTPUd2MN_z2R3Ncqw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzQ-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/09/613a492189e9c765ac7219fc/613a492189e9c765ac7219fd_o_U_v2.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Yahoo Finance’s Dan Howley joins the Yahoo Finance Live panel with the latest Tech Support: Should you hold off on buying a new iPhone?",
"url": "https://finnhub.io/api/news?id=f213f80fd9e48777e32720663e7d24da6bb86c93daa6d92f45d39da3bbc6f9ea"
}, {
"category": "company",
"datetime": 1631209229,
"headline": "Apple is spending 'chump change' on original content, and that is big win for Netflix stock: analyst",
"id": 70428601,
"image": "https://s.yimg.com/ny/api/res/1.2/hoReb6RMocF3xsa6fxWsVQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://s.yimg.com/os/creatr-uploaded-images/2021-09/2d52a0d0-1192-11ec-bbd3-da5036b4ce7b",
"related": "AAPL",
"source": "Yahoo",
"summary": "Netflix continues to dust Apple on spending for original content, and that is ultimately bullish for Netflix investors argues this top analyst on Yahoo Finance Live.",
"url": "https://finnhub.io/api/news?id=93136ca7cc9d9a78a2013f3cca8a2d03b22b69e034f6645e664e0e852ed64ba2"
}, {
"category": "company",
"datetime": 1631206560,
"headline": "VR Is Finally Here To Stay, And Facebook Is The Big Winner",
"id": 70426283,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1252396999/medium_image_1252396999.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "Facebook is one of the leading players in the fast growing AR/VR industry. Read more to learn why Facebook is set to continue to dominate this segment.",
"url": "https://finnhub.io/api/news?id=f0418380aadf3d87d72547a7d947c50281302377e0ef012a29cfbf55ac4d0414"
}, {
"category": "company",
"datetime": 1631206345,
"headline": "Facebook’s Smart Glasses Can Take Calls and Photos, Lack AR",
"id": 70428602,
"image": "https://s.yimg.com/uu/api/res/1.2/EWRY5TCjY7Z.NxPS8XmA2A--~B/aD02MTg7dz05OTA7YXBwaWQ9eXRhY2h5b24-/https://media.zenfs.com/en/bloomberg_technology_68/6040e7dfb5054ab304ed6130362ef543",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- Facebook Inc. unveiled its long-awaited smart glasses in partnership with Ray-Ban, entering a nascent wearables market with a focus on capturing photos rather than augmented reality.The social network on Thursday showed off the glasses, called Ray-Ban Stories -- a direct rival to Snapchat’s Spectacles. The $299 Facebook glasses, which use EssilorLuxottica SA-owned Ray-Ban’s classic Wayfarer frame style, let users take photos and video, listen to music and answer phone calls. While",
"url": "https://finnhub.io/api/news?id=cef83938928d3b0eb48f8a232ac05e4e35eb2cd43228a0bce2df1c67b770543e"
}, {
"category": "company",
"datetime": 1631205271,
"headline": "Apple event: Everything we expect from the big launch live stream, including iPhone 13, Apple Watch Series 7 and new AirPods",
"id": 70428603,
"image": "https://static.independent.co.uk/2021/08/13/15/apple.jpg?width=1200\u0026auto=webp\u0026quality=75",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple is holding its biggest event of the year, a live streamed presentation called “California Streaming”. The new iPhone is likely to be the star of the event, as it is every September. You can read our full rundown of everything that’s coming with the iPhone here.",
"url": "https://finnhub.io/api/news?id=c0e9dfccc4369c3f10f1eb106fbb6ef6e6d59125f64d7d5ac09a4779512b6bec"
}, {
"category": "company",
"datetime": 1631204940,
"headline": "After Hours Most Active for Sep 9, 2021 : NVST, AFRM, SIRI, XOM, VZ, KMI, ISEE, AAPL, KPLT, CLOV, GIS, HPE",
"id": 70445887,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?762092753",
"related": "AAPL",
"source": "Nasdaq",
"summary": "The NASDAQ 100 After Hours Indicator is down -2.87 to 15,558.18. The total After hours volume is currently 49,345,789 shares traded.The following are the most active stocks for the after hours session: Envista Holdings Corporation (NVST) is unchanged at $43.33, with 3,417,014 sh",
"url": "https://finnhub.io/api/news?id=b99f735de5b23ae1b0313e025b0b0761135069f9b50bb977c5dfc30ac7d69ae9"
}, {
"category": "company",
"datetime": 1631203680,
"headline": "Apple Stock Beats the Market Ahead of the iPhone Launch. The Street Remains Bullish.",
"id": 70428604,
"image": "https://s.yimg.com/ny/api/res/1.2/AKDnPeKct1CSCaFPB_LTmg--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD00MDA-/https://s.yimg.com/uu/api/res/1.2/BcH4IFmuFznlLnoIOcaebQ--~B/aD02NDA7dz0xMjgwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/Barrons.com/778c6603c04a579359af3c8aacded3f5",
"related": "AAPL",
"source": "Yahoo",
"summary": "Since the end of June, Apple shares have appreciated 13%, more than twice the return on the Nasdaq Composite.",
"url": "https://finnhub.io/api/news?id=9ab24d73524d93aeb07bcfc665b4f642177bc6842378c87c742761c722517aea"
}, {
"category": "company",
"datetime": 1631203593,
"headline": "GameStop says it isn't just selling video games — it's also 'evolving' into a tech company",
"id": 70428503,
"image": "https://s.yimg.com/ny/api/res/1.2/ZwaeLbUKKmOF7UCx9efnQA--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD00MDA-/https://s.yimg.com/os/creatr-uploaded-images/2021-01/095abc60-6271-11eb-bbfd-f4e426d901fb",
"related": "AAPL",
"source": "Yahoo",
"summary": "GameStop doesn't see itself as a retailer anymore.",
"url": "https://finnhub.io/api/news?id=cabce6b8be8f9231d3334c79717a0c40db2133519ddbbe764fa0b9c7259a9507"
}, {
"category": "company",
"datetime": 1631203237,
"headline": "Microsoft Scraps Return-to-Office Plan as Delta Variant Rages",
"id": 70428606,
"image": "https://s.yimg.com/ny/api/res/1.2/9sh618mW9VcT_KNoqneyGA--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02Njc-/https://s.yimg.com/uu/api/res/1.2/nF1GqcDNjEOCFJ7wtJxzKQ--~B/aD03MjA7dz0xMjk2O2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/bloomberg_technology_68/b64ef13b4e97574fd96c8d55a398c578",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- Microsoft Corp. is scrapping plans to fully reopen offices by Oct. 4, saying it can no longer give a date for returning to work because the pandemic is too unpredictable. “Given the uncertainty of Covid-19, we’ve decided against attempting to forecast a new date for a full reopening of our U.S. work sites in favor of opening U.S. work sites as soon as we’re able to do so safely based on public health guidance,” the Redmond, Washington-based software maker said in a blog post Thurs",
"url": "https://finnhub.io/api/news?id=931d9f387b226999f3d212843d5acc0e20aa31cf6f9ce62c8f923fa9ecc23df2"
}, {
"category": "company",
"datetime": 1631203200,
"headline": "S\u0026P 500 ends down after jobless claims hit 18-month low",
"id": 70445758,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T113916Z_1_XY8_RTRLXPP_2_LYNXPACKAGER.JPG?1925273180",
"related": "AAPL",
"source": "Nasdaq",
"summary": "The S\u0026P 500 ended lower on Thursday after weekly jobless claims fell to a near 18-month low, allaying fears of a slowing economic recovery, but also stoking worries the Fed could move sooner than expected to scale back its accommodative policies.",
"url": "https://finnhub.io/api/news?id=c69168e92c222dda697977ae9f534a9a8a3b619cfa3910de600549b5049a7542"
}, {
"category": "company",
"datetime": 1631203200,
"headline": "Key Takeaways From Facebook's Smart Glass Launch",
"id": 70428403,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/abtech_1717.png",
"related": "AAPL",
"source": "Benzinga",
"summary": "Facebook Inc (NASDAQ: FB) launched new smart glasses in partnership with Ray-Ban. \nThe $299 Facebook glasses, which use Luxottica Group SpA-owned Ray-Ban'...",
"url": "https://finnhub.io/api/news?id=b2b46e991db760e7cfc142fdd02bf31146b6db9295814417e59b2809389a6c7b"
}, {
"category": "company",
"datetime": 1631202600,
"headline": "Amazon Intensifies Home-Entertainment Rivalry With Latest Launch",
"id": 70425481,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/abtech_1715.png",
"related": "AAPL",
"source": "Benzinga",
"summary": "Amazon.com Inc (NASDAQ: AMZN) announced an all-new lineup of Fire TV devices with its first-ever Amazon-built smart TVs, the Amazon Fire TV Omni Series and 4-...",
"url": "https://finnhub.io/api/news?id=b0c976a5d3480546da7309ab6d033fb743a974455bd05ce1b31509dc696f2899"
}, {
"category": "company",
"datetime": 1631200508,
"headline": "Bridgerton, Stranger Things are the most important shows for Netflix: analyst",
"id": 70428607,
"image": "https://s.yimg.com/ny/api/res/1.2/Kv.yYnyN1jsd2WRY1H612A--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzQ-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/09/613a24fc8346ba45ba75964f/613a24fc8346ba45ba759650_o_U_v2.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Nat Schindler, Bank of America Research Analyst, joins Yahoo Finance Live to discuss Netflix's epic month rally, attracting more subscribers and what's next for the streaming service before the year ends.",
"url": "https://finnhub.io/api/news?id=7197e28d2a39e44dda01c14c5c3590f8d623ff5d6a631c600375ca382f9d8877"
}, {
"category": "company",
"datetime": 1631196900,
"headline": "2 Top Growth Stocks to Buy Right Now and Hold for the Long Term",
"id": 70428168,
"image": "https://s.yimg.com/ny/api/res/1.2/i7nciMbAMyfO1_vHlrwBLQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDE-/https://s.yimg.com/uu/api/res/1.2/2tLhSVT_8kU3SB0wWn8gCQ--~B/aD05MzQ7dz0xNDAwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/motleyfool.com/204548f81c2f5c3345c315e6a64dc648",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple and PayPal have delivered years of big gains for their shareholders, and their growth stories are far from over.",
"url": "https://finnhub.io/api/news?id=b02cf46f524fc4660da618f228c81e8a4e6b0564f097cc9fac8e4ae80f20e387"
}, {
"category": "company",
"datetime": 1631196420,
"headline": "Apple Intensifies Folding Phone Rivalry With This Move",
"id": 70428405,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/abtech_1709.png",
"related": "AAPL",
"source": "Benzinga",
"summary": "Apple Inc (NASDAQ: AAPL) continues to explore options to fill the entire volume of an iPhone, Apple Insider reports. The iPhone maker is researching batteries that can...",
"url": "https://finnhub.io/api/news?id=839e02007d5f3d87735ae870ea68508b1c7f9aa8951b556d82dd7a5a9b73df3f"
}, {
"category": "company",
"datetime": 1631192460,
"headline": "Apple Plans To Go Solo With Car Project To Avoid Potential Delays: Report",
"id": 70428406,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/screenshot_2021-09-09_1.01.29_pm.png",
"related": "AAPL",
"source": "Benzinga",
"summary": "Rumors about Apple, Inc.'s (NASDAQ: AAPL) self-driving car project continue to crop up, suggesting the tech giant may be finally getting serious on expediting...",
"url": "https://finnhub.io/api/news?id=5ebffea34a8ee8cc6ae8de310a7f44b0f23f7d0d1947212028eadb973c8a768c"
}, {
"category": "company",
"datetime": 1631192040,
"headline": "Facebook unveils its first smart glasses",
"id": 70445793,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T160209Z_1_CF0_RTRLXPP_2_LYNXPACKAGER.JPG?1230806261",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Facebook Inc launched its first smart glasses on Thursday in a step toward its aim of offering true augmented-reality spectacles.",
"url": "https://finnhub.io/api/news?id=363aa32d42e361b2fe41372b993e23e6b7c4f0689f3e11494359503926beb461"
}, {
"category": "company",
"datetime": 1631191980,
"headline": "A Look Into Apple's Price Over Earnings",
"id": 70428407,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/sites/all/themes/bz2/images/bz-icon.png",
"related": "AAPL",
"source": "Benzinga",
"summary": " \n \nIn the current market session, Apple Inc. (NASDAQ:AAPL) is trading at $155.02, after a 0.1% decrease. However, over the past month, the stock spiked by 4.12%, and in...",
"url": "https://finnhub.io/api/news?id=bf7cb006060c0a16735dd9abacc6f5811b1b1f91ec90ac8a9d930111c67b1260"
}, {
"category": "company",
"datetime": 1631191871,
"headline": "Apple : Florida butcher shop installs vending machine to serve customers 24/7",
"id": 70421840,
"image": "",
"related": "AAPL",
"source": "Finnhub",
"summary": "A Tampa, Florida butcher shop, the Boozy Pig, has installed an outdoor vending machine to offer meat 24/7, according to a WFLA report.The machine offers cuts of steak, pork and sausage as well as... | September 9, 2021",
"url": "https://finnhub.io/api/news?id=ab1e074779c9cedb095607e4fd50a69177871b6fd7c4cfaac85efb2ce93c3c5e"
}, {
"category": "company",
"datetime": 1631191620,
"headline": "Thursday's ETF with Unusual Volume: FCTR",
"id": 70446776,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?1173826945",
"related": "AAPL",
"source": "Nasdaq",
"summary": "The First Trust Lunt U.S. Factor Rotation ETF is seeing unusually high volume in afternoon trading Thursday, with over 335,000 shares traded versus three month average volume of about 110,000. Shares of FCTR were up about 0.3% on the day.",
"url": "https://finnhub.io/api/news?id=00868bed778c4b27f4d9f54d07fa47cc43fead55907a2dab41c18514202c2b57"
}, {
"category": "company",
"datetime": 1631190300,
"headline": "Qualivian Investment Partners Q2 2021 Investment Letter",
"id": 70420636,
"image": "https://static.seekingalpha.com/assets/og_image_1200-29b2bfe1a595477db6826bd2126c63ac2091efb7ec76347a8e7f81ba17e3de6c.png",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "Qualivian Investment Partners is an investment partnership focused on long-only public equities.",
"url": "https://finnhub.io/api/news?id=7a3a52f5968063c87ba51361e054a50205275a29caabb3131dcf0beb3bed9618"
}, {
"category": "company",
"datetime": 1631189580,
"headline": "Most Active Equity Options For Midday - Thursday, Sept. 9",
"id": 70447323,
"image": "",
"related": "AAPL",
"source": "TalkMarkets",
"summary": "",
"url": "https://finnhub.io/api/news?id=26cc2d95309d82d47e5220bac620a516b20d8ef16afac1d17f88c9f9029bcbfc"
}, {
"category": "company",
"datetime": 1631188380,
"headline": "3 Financial Tech Stocks to Buy While They're Out of Favor",
"id": 70450137,
"image": "https://investorplace.com/wp-content/uploads/2021/07/fintech_1600.jpg",
"related": "AAPL",
"source": "InvestorPlace",
"summary": "Even though markets are breaking records, there are pockets of relative weakness. These are the best fintech stocks to buy before they bounce.",
"url": "https://finnhub.io/api/news?id=2f7fd5c326240ddaf0e9f7ed349dbc9f0de34dea8b8ef8320c3183ce72ebd361"
}, {
"category": "company",
"datetime": 1631187000,
"headline": "Microsoft delays office reopening date indefinitely in United States",
"id": 70445795,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T151848Z_1_SH6_RTRLXPP_2_LYNXPACKAGER.JPG?864531640",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Microsoft Corp on Thursday decided to push the dates for the full reopening of its offices in the United States indefinitely due to the highly contagious Delta variant.",
"url": "https://finnhub.io/api/news?id=c0606c5825a99532026e2cc6483e0541037a57c9d1ee5408c66c9683ea5c2639"
}, {
"category": "company",
"datetime": 1631183340,
"headline": "Taper Or Tarry: Will Delta, Inflation, And Employment Data Spur Fed Action Or Delay?",
"id": 70423013,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/architecture-768432_1920_16.jpg",
"related": "AAPL",
"source": "Benzinga",
"summary": "It makes sense that tonight is the start of football season because the market’s been taking a few hits. \nMajor indices headed lower again overnight as the mood seems...",
"url": "https://finnhub.io/api/news?id=5c263671efd7e50fc2bbb06f78942a5142a27ec5045948b3ff1fcef42d8c4dd9"
}, {
"category": "company",
"datetime": 1631182920,
"headline": "US STOCKS-Wall St rises as jobless claims fall to near 18-month low",
"id": 70445762,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T114004Z_1_RZ6_RTRLXPP_2_LYNXPACKAGER.JPG?2117744183",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Wall Street indexes gained on Thursday after data showed weekly jobless claims fell to a near 18-month low, allaying fears of a slowing economic recovery due to the impact of the Delta coronavirus variant.",
"url": "https://finnhub.io/api/news?id=29cfbdbbf4db0390abe568af87e14c7cecee299130d3e5e06d2b0978b6e5e039"
}, {
"category": "company",
"datetime": 1631182200,
"headline": "Chancellor: Tech growth comes at irrational price",
"id": 70416159,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?745221138",
"related": "AAPL",
"source": "Nasdaq",
"summary": "LONDON (Reuters Breakingviews) - So overwhelming is the desire to find the next Alphabet, Amazon.com or Facebook that investors are chasing growth at any price. Just about any software company offering cloud-based services now commands a noseble",
"url": "https://finnhub.io/api/news?id=1d3f2f9f1602ac38d65b8363c25924bcffdfe2d5cd5efbd8be6ce172fbaea4e9"
}, {
"category": "company",
"datetime": 1631181180,
"headline": "IN THE KNOW: China's technology regulatory muscle flexing nothing new",
"id": 70414050,
"image": "",
"related": "AAPL",
"source": "Alliance News",
"summary": "Looking for stock market analysis and research with proves results? Zacks.com offers in-depth financial research with over 30years of proven results.",
"url": "https://finnhub.io/api/news?id=f2da9d06769471c517b6fabd17f14e962b1c80e83cebf9fffa8aebaa4e566434"
}, {
"category": "company",
"datetime": 1631179020,
"headline": "US STOCKS-Futures recoup some losses as jobless claims fall to near 18-month low",
"id": 70413217,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T114109Z_1_PH5_RTRLXPP_2_LYNXPACKAGER.JPG?1692390081",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Wall Street futures recouped some losses on Thursday after data showed weekly jobless claims fell to a near 18-month low, allaying fears of a slowing economic recovery due to the impact of the Delta coronavirus variant.",
"url": "https://finnhub.io/api/news?id=b37de4ff6edad4a8c85a5428cb1319e6ae1399c74326d300ad2148ec49f101a1"
}, {
"category": "company",
"datetime": 1631178540,
"headline": "If You'd Invested $1,000 in Roku In 2017, This Is How Much You Would Have Today",
"id": 70413637,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?1120497609",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Four years ago Roku (NASDAQ: ROKU) went public at $14 per share. The streaming device company's stock opened at $15.78 on the first day, closed at $23.50, and now trades in the $340s. If you had invested $1,000 at the declared IPO price, your stake would be worth nearly $25,000 t",
"url": "https://finnhub.io/api/news?id=860eb2bccc8f85ae994bd6dd5bea111e00c47121e2d1bcd2a485d55ecb617b42"
}, {
"category": "company",
"datetime": 1631178001,
"headline": "Amazon TVs are coming in October, with prices starting at $370",
"id": 70422684,
"image": "https://image.cnbcfm.com/api/v1/image/106939177-1631189007613amazon-omni-series-tv-2.PNG?v=1631189047",
"related": "AAPL",
"source": "CNBC",
"summary": "Two series will be available in various sizes: the Amazon Fire TV Omni and the more affordable Amazon Fire TV 4 Series.",
"url": "https://finnhub.io/api/news?id=f97ee4d59d48aed013b6c4f0b30e234b599299f5e7e431a670c82172262d37a7"
}, {
"category": "company",
"datetime": 1631178000,
"headline": "Nobel laureate Doudna's biotech Mammoth hits over $1 bln in valuation",
"id": 70414672,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T131537Z_1_MI4_RTRLXPP_2_LYNXPACKAGER.JPG?450888720",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Mammoth Biosciences, co-founded by Nobel laureate Jennifer Doudna, touched a valuation of more than $1 billion after raising $150 million in its latest funding round.",
"url": "https://finnhub.io/api/news?id=64a4d6029cf768e98b1e68dab580b5901acc7177531422fa6dbfbae9390e8d20"
}, {
"category": "company",
"datetime": 1631174971,
"headline": "The Time To Think About Tomorrow Is Today",
"id": 70409431,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/180806860/medium_image_180806860.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "Investors should re-balance their portfolios. Check out why this is a good time to review your portfolio and see what investors should do at this time.",
"url": "https://finnhub.io/api/news?id=0b172d40a1babaf6fb4c36a6f7f4cfc95294b808b7e81161e91737ff3e29142f"
}, {
"category": "company",
"datetime": 1631174100,
"headline": "Notable open interest changes for September 9th",
"id": 70414479,
"image": "",
"related": "AAPL",
"source": "Thefly.com",
"summary": "Wednesday's total op... GSAT, AAPL, CCJ, BBIG",
"url": "https://finnhub.io/api/news?id=5f716d69746c6b2f07bdbd69976d048e9db921a7ba5bc9b8c87adeed1b3da26d"
}, {
"category": "company",
"datetime": 1631173020,
"headline": "US STOCKS-Futures drop ahead of jobless claims data as recovery concerns weigh",
"id": 70412604,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T114004Z_1_RZ6_RTRLXPP_2_LYNXPACKAGER.JPG?1280738342",
"related": "AAPL",
"source": "Nasdaq",
"summary": "U.S. stock index futures fell on Thursday ahead of weekly jobless claims data, as uncertainty around Federal Reserve's monetary tapering timeline and signs of slowing economic growth were a drag on investor sentiment.",
"url": "https://finnhub.io/api/news?id=eb6320f88429645fcccc37c83383d3d11db62484d9a94ecb75da24674c55b62f"
}, {
"category": "company",
"datetime": 1631170800,
"headline": "We're Buying Into The Great American REIT Reopening Trade",
"id": 70405808,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1222266660/medium_image_1222266660.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "As the US economy continues to expand, we believe the various property sectors could generate meaningful alpha. Check out the 6 REITs that I'm planning to add.",
"url": "https://finnhub.io/api/news?id=d0c249dadfb8afeb729c5bf18826f51bb7521dd805a82160b7098ead6aefb5dc"
}, {
"category": "company",
"datetime": 1631170380,
"headline": "Down 14% This Year, Is Samsung Stock A Buy?",
"id": 70414675,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?761984432",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Samsung Electronics’ stock (LSE: SMSN) has declined by almost 14% year-to-date and currently trades at levels of around $1,660 per share. There are likely a couple of factors driving the decline. Although Samsung has been a big beneficiary of the surging demand and strong",
"url": "https://finnhub.io/api/news?id=9622dce8c0489fbce56ed6b96856f2e5084977445ca6056f6e9b378bbc9558fb"
}, {
"category": "company",
"datetime": 1631170380,
"headline": "Apple Stock Hits All Time Highs Of $154. Will It Rally Further?",
"id": 70413786,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?2116556202",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Apple stock (NASDAQ: AAPL) has gained almost 4% over the last week at near all-time highs of about $154 per share, driven by anticipation surrounding the launch of the company’s next generation of iPhones, which are likely due around the third week of September, and possi",
"url": "https://finnhub.io/api/news?id=0ea3f7eb7263f2e6df1132706104456797850840b5405e5bdb823f5a52980c92"
}, {
"category": "company",
"datetime": 1631169840,
"headline": "What’s Up With Apple: Analyst Boosts Price Target, Globalstar on the Bubble, and More",
"id": 70415915,
"image": "https://247wallst.com/wp-content/uploads/2020/03/imageForEntry1-89A.jpg",
"related": "AAPL",
"source": "247WallSt",
"summary": "Apple stock traded near its all-time high on Wednesday before slipping a bit to close down about 1% for the day. The dip followed one analyst's price target hike on the stock to $170, up nearly 10% from current levels.",
"url": "https://finnhub.io/api/news?id=cc1828e8eaa399466ce29eab2acc12a080b107b1073cd35b05ec50de70d65afe"
}, {
"category": "company",
"datetime": 1631168940,
"headline": "Google under new EU antitrust investigation - MLex reporter",
"id": 70414370,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-09T102630Z_1_ER1_RTRLXPP_2_LYNXPACKAGER.JPG?1580612472",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Alphabet Inc's Google is facing a renewed EU antitrust investigation into whether it may have forced device manufacturers to use Google Assistant as the default voice assistant on Android devices, an MLex reporter tweeted on Thursday.",
"url": "https://finnhub.io/api/news?id=edd3c0b9f376c236a103371763aae3acc59373fa15eb1f880ff680508dcceda7"
}, {
"category": "company",
"datetime": 1631166195,
"headline": "NFJ: Does Options Writing Strategy Offer Enough Downside Protection?",
"id": 70402029,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1338420716/medium_image_1338420716.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "AllianzGI Dividend, Interest \u0026 Premium Strategy Fund (NFJ) invests in equities and convertible securities. Check out my analysis on NFJ Fund here.",
"url": "https://finnhub.io/api/news?id=cc2b522c0dc8a1f73456c96e439bb791b78d3a5b8e37c903a3606da1566e94b8"
}, {
"category": "company",
"datetime": 1631164440,
"headline": "US and EU form council to seek harmony on big tech regulation",
"id": 70415492,
"image": "",
"related": "AAPL",
"source": "Alliance News",
"summary": "Looking for stock market analysis and research with proves results? Zacks.com offers in-depth financial research with over 30years of proven results.",
"url": "https://finnhub.io/api/news?id=31cf6bf44d6395f8d6614f58cae9fe2b97a0ef8cab36fb7750ce7c57b96226db"
}, {
"category": "company",
"datetime": 1631164080,
"headline": "Apple price target raised to $175 from $165 at Piper Sandler",
"id": 70415917,
"image": "",
"related": "AAPL",
"source": "Thefly.com",
"summary": "Piper Sandler analyst Har... AAPL",
"url": "https://finnhub.io/api/news?id=a282cab292c23372e401e613f2df97e4ecd7da5b8a565360f5f05bef0b48df3d"
}, {
"category": "company",
"datetime": 1631149238,
"headline": "CoCoPIE helps lower end smartphones achieve high-end performance",
"id": 70391388,
"image": "https://s.yimg.com/ny/api/res/1.2/X6ssrDtBI4Upm8.CJj7yeQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzQ-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/09/61395cb78346ba45ba75936d/61395cb78346ba45ba75936e_o_U_v2.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Xipeng Shen, CoCoPIE Co-Founder and CTO, joins Yahoo Finance to discuss how smart phones could become cheaper moving forward.",
"url": "https://finnhub.io/api/news?id=a941478a871f88287b4b158cd56ef5d5f3ec5c11bb9a392b5643132deea48423"
}, {
"category": "company",
"datetime": 1631141878,
"headline": "Why Globalstar Stock Soared 30% Today",
"id": 70390781,
"image": "https://s.yimg.com/ny/api/res/1.2/YI0VqbnyyowkSCHmBC70Yw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD05MDA-/https://s.yimg.com/uu/api/res/1.2/g9r3EVtVvBtSwHn2c9ngeA--~B/aD0xMDUwO3c9MTQwMDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/motleyfool.com/f94d2628d5ee5bdc1f5dd1455d2be7e2",
"related": "AAPL",
"source": "Yahoo",
"summary": "Investors are targeting Apple's upcoming media event as a possible game-changer for the satellite communications provider.",
"url": "https://finnhub.io/api/news?id=9920952dae1876b2ef0c14c9211072323b9978bb23cfd366b170ce9618212922"
}, {
"category": "company",
"datetime": 1631138730,
"headline": "Is Apple Stock A Buy Ahead Of iPhone 13 Launch?",
"id": 70391390,
"image": "https://s.yimg.com/uu/api/res/1.2/Jx7Lo1DTuJPL869J7Thdlw--~B/aD01NjM7dz0xMDAwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/ibd.com/3ddd965bcf3603e1af87f1c09d1868db",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple has been an American success story several times over with the Mac, iPod, iPhone and other inventions. But is Apple stock a buy now? Here's what its stock chart and earnings show.",
"url": "https://finnhub.io/api/news?id=3e6878a33f664b9e5f28dce76acf69884b935aa847835319d8cf9b495269f74f"
}, {
"category": "company",
"datetime": 1631136434,
"headline": "Nicholas Ward's Dividend Growth Portfolio: August 2021 Update",
"id": 70390694,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1236903031/medium_image_1236903031.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "My passive income was up 21.1% during August. I made 8 trades during August; all purchases.",
"url": "https://finnhub.io/api/news?id=13c4809001167de57919d49e7b3b44a529e3fb73f4d9b1ad94969cf0b2a7f654"
}, {
"category": "company",
"datetime": 1631134427,
"headline": "Microsoft's Latest Move To Compete Against Google, Apple",
"id": 70389638,
"image": "https://s.yimg.com/uu/api/res/1.2/Cd7yTU2T6RjnPtk1.D_gSA--~B/aD00MDA7dz02MDA7YXBwaWQ9eXRhY2h5b24-/https://media.zenfs.com/en/Benzinga/d973cf4786bc499e02e79ceffdbf2701",
"related": "AAPL",
"source": "Yahoo",
"summary": "Microsoft Corp (NASDAQ: MSFT) has launched a personalized news feed and collection of informational content called 'Microsoft Start,' which provides news from premium publishers. It offers breaking headlines and content based on user interest cutting on time lost in navigating notifications, validating sources, and switching devices. Microsoft Start is available on Microsoft Edge and Alphabet Inc's (NASDAQ: GOOG) (NASDAQ: GOOGL) Google Chrome as a standalone website, as a mobile app on Android a",
"url": "https://finnhub.io/api/news?id=301383ccda7787a4230eadae0656d2c28d9fbefc5cc0ad43599e802d23f21dc3"
}, {
"category": "company",
"datetime": 1631131542,
"headline": "Apple Will See Minimal Financial Impact From App Store Changes: Analysts",
"id": 70391392,
"image": "https://s.yimg.com/uu/api/res/1.2/JJNu2OKtsNKNEvvj_U9CpQ--~B/aD01NjM7dz0xMDAwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/ibd.com/b515c8aa0ade73ee7a09790f7671da5b",
"related": "AAPL",
"source": "Yahoo",
"summary": "Recent changes to Apple's App Store in response to regulatory and legal pressure will have minimal financial impact on the company, analysts say.",
"url": "https://finnhub.io/api/news?id=5343e084431e23503c2242359a592e9d8c758692da0c66c2d52f07c17c0f9825"
}, {
"category": "company",
"datetime": 1631131200,
"headline": "New iPhones Are Coming. Apple Stock Is a Buy, This Analyst Says.",
"id": 70391393,
"image": "https://s.yimg.com/ny/api/res/1.2/7lhlsjdSLlcemHpupthO_w--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02MDA-/https://s.yimg.com/uu/api/res/1.2/TwhOoWEy1LLRiZZi1gLsIw--~B/aD02NDA7dz0xMjgwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/Barrons.com/cf3a2a6adec638a4e5bbfa538cddbb53",
"related": "AAPL",
"source": "Yahoo",
"summary": "Baird analyst William V. Power raised his price target on Apple stock even as the new iPhone 13 may include only incremental upgrades.",
"url": "https://finnhub.io/api/news?id=669838d1c244de7231a7ab920d5f41d5d9fff7624063e978732cce747479a05b"
}, {
"category": "company",
"datetime": 1631130736,
"headline": "Fast-Growing Stocks: Apple, GOOGL Stock Among 24 Names Expecting 65% To 749% Growth In Q3",
"id": 70390757,
"image": "https://s.yimg.com/uu/api/res/1.2/YYX1idIE8u1ya2SL8Z4itw--~B/aD01NjM7dz0xMDAwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/ibd.com/b7c6459026e128446c7e462dfbf643e3",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple, DocuSign, and Google parent Alphabet are among today's fastest-growing stocks expecting up to 749% Q3 growth.",
"url": "https://finnhub.io/api/news?id=c59ab0555b33fd8446d18cf35056db55a7cd7031ec7d6001781538744f68e029"
}, {
"category": "company",
"datetime": 1631080800,
"headline": "Apple App Store Changes Fail to Sway Lawmakers Bent on Overhaul",
"id": 70362097,
"image": "https://s.yimg.com/ny/api/res/1.2/fJBcULLcaBOSo90IDMt9AQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD05MDE-/https://s.yimg.com/uu/api/res/1.2/cXIHvJMaDkcfmf6MjNXhtg--~B/aD0xMjMzO3c9MTY0MzthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/bloomberg_technology_68/fbf58af5db1c9891343fb98558cb8eb3",
"related": "AAPL",
"source": "Yahoo",
"summary": "(Bloomberg) -- U.S. lawmakers are barreling ahead with legislation to change the way Apple Inc. runs its App Store, unconvinced by the company’s recent moves to address antitrust complaints from developers and regulators around the world. A proposed bill from a bipartisan trio of senators would force significant changes to the way consumers download and use apps on their iPhones and other Apple devices. Minnesota Democrat Amy Klobuchar, head of the Senate antitrust subcommittee and one of the bi",
"url": "https://finnhub.io/api/news?id=6906046b9cdeb0afc92f254fd48d1cfa2bffd309d1a210b84e01690a499f3585"
}, {
"category": "company",
"datetime": 1631125831,
"headline": "Netflix stock has been on a tear — here's why",
"id": 70390761,
"image": "https://s.yimg.com/ny/api/res/1.2/iYccPDk7Sv9fs6Oycm8HCA--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://s.yimg.com/os/creatr-uploaded-images/2021-09/29b5fdb0-10c4-11ec-97f4-4e8b8f076902",
"related": "AAPL",
"source": "Yahoo",
"summary": "Netflix shares are on one mighty run. Here's why.",
"url": "https://finnhub.io/api/news?id=b27e4678260435c7bb2917d29914081d90060691ee39593771d5fad1122a9978"
}, {
"category": "company",
"datetime": 1631124195,
"headline": "Stock futures are flat after Dow and S\u0026P 500 fall for the third straight session ",
"id": 70390155,
"image": "https://image.cnbcfm.com/api/v1/image/106931048-1629474197254-trader.jpg?v=1629474240",
"related": "AAPL",
"source": "CNBC",
"summary": "On Wednesday, the Dow Jones Industrial Average and S\u0026P 500 fell for the third day straight. ",
"url": "https://finnhub.io/api/news?id=e5450c8d68ac718e774f59aed67c980bbc090ba4fb7a5e3919e05e6d8de88379"
}, {
"category": "company",
"datetime": 1631121600,
"headline": "Apple is facing a mountain of controversies, but investors don't seem to care",
"id": 70391397,
"image": "https://s.yimg.com/ny/api/res/1.2/6sGgfdvJ_KDMEmH07UguGQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://s.yimg.com/os/creatr-images/2020-07/d33f78d0-bc96-11ea-abbb-2f6a0cb6c107",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple is facing major controversies at a time when its about to launch its most important product of the year. But investors don't seem to care.",
"url": "https://finnhub.io/api/news?id=09becd8940b5038320e5dadbd4317c5f82e62e94d93e9dd30ebb3c69d6809ed6"
}, {
"category": "company",
"datetime": 1631120669,
"headline": "iPhone 13: Everything we know about new Apple phone as release date nears",
"id": 70391398,
"image": "https://static.independent.co.uk/2021/08/18/11/apple.jpg?width=1200\u0026auto=webp\u0026quality=75",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple is about to release the iPhone 13. While it has not said specifically that the event is for the iPhone – and the release was delayed into October, last year – it almost certainly will be the launch of the new handset. While we’ve been referring to it as the iPhone 13 – and will continue to do so – there’s no guarantee that’s what it will be called.",
"url": "https://finnhub.io/api/news?id=7a963e12a16eba445e0fadcbf3dbb7ab3b6a5b517c751bff30f03bea4ad2d89a"
}, {
"category": "company",
"datetime": 1631119740,
"headline": "WiMi Hologram Cloud's Introduces WiMi HoloAR lens",
"id": 70419479,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/abtech_1697.png",
"related": "AAPL",
"source": "Benzinga",
"summary": "Holographic AR application technology provider WiMi Hologram Cloud Inc (NASDAQ: WIMI) has launched a new augmented reality head-mounted display (HMD) product, named \"WiMi...",
"url": "https://finnhub.io/api/news?id=f9a7bd69428e52c06d7d29434c0b75042187b26c57122e71c82476423d8f45bf"
}, {
"category": "company",
"datetime": 1631118540,
"headline": "After Hours Most Active for Sep 8, 2021 : CPNG, AAPL, VEON, NLOK, ELAN, V, ENDP, CMCSA, HL, BAC, PINS, CAR",
"id": 70412504,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?1595232854",
"related": "AAPL",
"source": "Nasdaq",
"summary": "The NASDAQ 100 After Hours Indicator is down -2.53 to 15,618.32. The total After hours volume is currently 57,179,117 shares traded.The following are the most active stocks for the after hours session: Coupang, Inc. (CPNG) is -0.03 at $31.32, with 5,310,272 shares traded. CPNG's",
"url": "https://finnhub.io/api/news?id=95492ce56d3315206bc7b512098ad948ffd4bc209f045b68aca54cb40ebeacb4"
}, {
"category": "company",
"datetime": 1631118038,
"headline": "Dow Jones Off Lows After Stock Market Sell-Off Fueled By Fed Official's Comments",
"id": 70389921,
"image": "https://s.yimg.com/uu/api/res/1.2/CRy0tjr2zqoQpOODo_tfJA--~B/aD02MDA7dz0xMDY1O2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/ibd.com/72af72ab3154f62716df3be530b0601d",
"related": "AAPL",
"source": "Yahoo",
"summary": "Stocks moved off lows midday, as the Dow Jones Industrial Average pared a 174-point loss that was fueled by a Fed official's comments.",
"url": "https://finnhub.io/api/news?id=a4f40fb0662ae068919b60f14ebd32ec30c4ed21fdefd2c4172829709cb58160"
}, {
"category": "company",
"datetime": 1631117760,
"headline": "Sherwin-Williams, PulteGroup fall; Perrigo, Kadmon rise",
"id": 70415700,
"image": "",
"related": "AAPL",
"source": "Associated Press, The",
"summary": "Looking for stock market analysis and research with proves results? Zacks.com offers in-depth financial research with over 30years of proven results.",
"url": "https://finnhub.io/api/news?id=1de3aa5cbf76357278d78a57607765b25399ef3dd3ec7c6b5f02475cea7f662f"
}, {
"category": "company",
"datetime": 1631117700,
"headline": "US STOCKS-Wall Street ends lower, weighed down by Big Tech",
"id": 70412538,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-08T113918Z_1_DO1_RTRLXPP_2_LYNXPACKAGER.JPG?1679391943",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Wall Street ended lower on Wednesday, spooked by worries that the Delta coronavirus variant could blunt the economy's recovery and on uncertainty about when the Federal Reserve may pull back its accommodative policies.",
"url": "https://finnhub.io/api/news?id=7cc7b867b7a9cf1bd4aeac921f91643a3b3a1c0324963df1e8e631bfdc08bfb6"
}, {
"category": "company",
"datetime": 1631116820,
"headline": "Dow Jones Slides As Yellen Warns Congress; Apple Sells Off From Record High; Tesla Skids Amid China Sales",
"id": 70389925,
"image": "https://s.yimg.com/uu/api/res/1.2/jyYDBjHF7bnIEtCEQeuhfg--~B/aD01NjM7dz0xMDAwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/ibd.com/1856de03212e386cb58e628bf758fa91",
"related": "AAPL",
"source": "Yahoo",
"summary": "The Dow Jones Industrial Average dropped 150 points Wednesday, as Tesla stock reversed lower amid China sales. Apple fell from record highs.",
"url": "https://finnhub.io/api/news?id=641a0e057cae39507b8093f9dcbffa73d3388ce5de1f1cdec67762ffb3cad7f7"
}, {
"category": "company",
"datetime": 1631116800,
"headline": "Wall Street ends lower, weighed down by Big Tech",
"id": 70412539,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-08T113747Z_1_YD8_RTRLXPP_2_LYNXPACKAGER.JPG?1623812766",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Wall Street ended lower on Wednesday, spooked by worries that the Delta coronavirus variant could blunt the economy's recovery and on uncertainty about when the Federal Reserve may pull back its accommodative policies.",
"url": "https://finnhub.io/api/news?id=5e483a72270bf77ab377f86ae75a5260306c81207c3cb4a76aa04f4bdf1b6de6"
}, {
"category": "company",
"datetime": 1631116651,
"headline": "Apple stock falls as investors look ahead to Apple iPhone 13 event",
"id": 70391401,
"image": "https://s.yimg.com/ny/api/res/1.2/ub0MNkgu8AFhVYcKUYOZlA--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzY-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/08/6138dd6c540ba3052adb3749/6138dd6c540ba3052adb374a_o_U_v2.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Krish Sankar, Cowen Senior Analyst, talks about what to expect ahead of the September 14th event.",
"url": "https://finnhub.io/api/news?id=9e6dd816eb1181d17c5d146471ec97c3868b0f9c691bc7503797f2c5319a5333"
}, {
"category": "company",
"datetime": 1631116620,
"headline": "Twitter's Latest Feature 'Communities' Trial Underway - What You Need To Know",
"id": 70388425,
"image": "https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2012/twitter-3319619_1920_20.jpg",
"related": "AAPL",
"source": "Benzinga",
"summary": "Twitter Inc's (NYSE: TWTR) latest feature under trial is called 'Communities,' the company mentioned in its blog. Thus far, it will be on Apple Inc...",
"url": "https://finnhub.io/api/news?id=1f99a6ae5987c93b73a35a4793a08b30dc13a8933cae3e5494ae50fa62b9c1a4"
}, {
"category": "company",
"datetime": 1631113818,
"headline": "When can you pre-order Apple’s iPhone 13 in the UK?",
"id": 70391402,
"image": "https://static.independent.co.uk/2021/09/08/15/iphone%2013%20indybest%20copy.jpg?width=1200\u0026auto=webp\u0026quality=75",
"related": "AAPL",
"source": "Yahoo",
"summary": "Here’s everything we know about the launch of the newest iPhone, and how to get your hands on it",
"url": "https://finnhub.io/api/news?id=69ec979d6fe26ff57a5581efb921129257a72edb6c66b2dca149ea05c2425fbf"
}, {
"category": "company",
"datetime": 1631112488,
"headline": "Tech sector has no ‘shortage of opportunities’",
"id": 70390767,
"image": "https://s.yimg.com/ny/api/res/1.2/2vlbq2RCwLDNkR5LGHvszQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzU-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/08/6138cd298346ba45ba7590ea/6138d435540ba3052adb372e_o_U_v3.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Yahoo Finance’s Julie Hyman and Brian Sozzi discuss outlook for big tech with Lo Toney, Plexo Capital Founding Managing Partner.",
"url": "https://finnhub.io/api/news?id=13613617f18efb2144df717ee72a3e30b910cdc1df73d569be1b9034b9ff68f4"
}, {
"category": "company",
"datetime": 1631112191,
"headline": "When is iPhone 13 out? Likely release date for new Apple phone",
"id": 70391404,
"image": "https://static.independent.co.uk/s3fs-public/thumbnails/image/2017/09/11/18/iphone-2.jpg?width=1200\u0026auto=webp\u0026quality=75",
"related": "AAPL",
"source": "Yahoo",
"summary": "The iPhone 13 is about to arrive. Nobody outside the company knows what exactly that could mean, though rumours suggest Apple’s new phone will have a smaller notch at the top, improved cameras and a faster processor. Apple might choose to forego the “13” number, given its reputation, and perhaps even drop the numbering scheme entirely as it has with other products such as the iPad.",
"url": "https://finnhub.io/api/news?id=34f3a1f9c7fdc321e6e160dc7287f66fc14cf666457ea80729e7f8f5afffef9e"
}, {
"category": "company",
"datetime": 1631111323,
"headline": "Apple’s big event is September 14 — here’s what to expect",
"id": 70391405,
"image": "https://s.yimg.com/ny/api/res/1.2/Y0Zl4FLOZbhnUXpoDVkyVA--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02NzQ-/https://s.yimg.com/hd/cp-video-transcode/prod/2021-09/08/6138c89c2f6b901586a3a76b/6138d4558346ba45ba759108_o_U_v3.jpg",
"related": "AAPL",
"source": "Yahoo",
"summary": "Brian Sozzi and Julie Hyman discuss the reasoning behind the sudden frenzy taking place with investors over Apple’s stock as the world continues to await the latest Apple event met to showcase the company’s newest products.",
"url": "https://finnhub.io/api/news?id=5be85dc51f5302e259cf03f58e947992e2d4d4e3199e9cc2229a293289d15974"
}, {
"category": "company",
"datetime": 1631111102,
"headline": "Apple ETFs to Soar on New iPhone 13 Launch Fervor",
"id": 70391406,
"image": "https://s.yimg.com/uu/api/res/1.2/0SBi3Os9RGINCBhzJBAHyw--~B/aD00MDA7dz02MzU7YXBwaWQ9eXRhY2h5b24-/https://media.zenfs.com/en/zacks.com/4c8321f6f5d3653d94cd8aa97f40ea11",
"related": "AAPL",
"source": "Yahoo",
"summary": "Apple is hitting new fresh highs ahead of its iPhone launch event on Sep 14.",
"url": "https://finnhub.io/api/news?id=a343f47503922662a3108cb1542cc3994fd9fc5b5f29b7303e5f549f516e41c9"
}, {
"category": "company",
"datetime": 1631110980,
"headline": "US STOCKS-Big Tech tugs Wall Street back from record high levels",
"id": 70412540,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-08T113918Z_1_DO1_RTRLXPP_2_LYNXPACKAGER.JPG?736673950",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Wall Street receded from record high levels on Wednesday, spooked by worries that the Delta coronavirus variant could blunt the economy's recovery and on uncertainty about when the Federal Reserve may pull back its accommodative policies.",
"url": "https://finnhub.io/api/news?id=1bdf9fa912db4849c07924cb59ba962b66c4d035b1a22f087763a5c0c24e2d10"
}, {
"category": "company",
"datetime": 1631107492,
"headline": "U.S. FTC meeting will scrutinize Big Tech's small deals",
"id": 70384469,
"image": "",
"related": "AAPL",
"source": "Finnhub",
"summary": "The U.S. Federal Trade Commission will hold its next open meeting on Sept. 15 to hear staff findings on deals that Big Tech firms like Facebook and Apple make which are sometimes too small to... | September 8, 2021",
"url": "https://finnhub.io/api/news?id=b0c4be24f970f40e001c4fe1c41af4c5c48156ba23b8260e6c57334c4f5f1795"
}, {
"category": "company",
"datetime": 1631106001,
"headline": "Twitter begins testing Communities, a new feature for connecting people with shared interests",
"id": 70387737,
"image": "https://image.cnbcfm.com/api/v1/image/106938256-1631049958799-Screen_Shot_2021-09-07_at_22038_PM.png?v=1631050058",
"related": "AAPL",
"source": "CNBC",
"summary": "Twitter announced it's testing a new feature Communities that will allow users to talk about specific topics with others who share the same interest. ",
"url": "https://finnhub.io/api/news?id=cfe0c6f399f9cfffd46229198749089e76c1c859f95979ad5c290023ffb57f58"
}, {
"category": "company",
"datetime": 1631105820,
"headline": "Nvidia seeks EU approval for Arm deal, decision due Oct. 13",
"id": 70413809,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-04-12T122442Z_1086843909_RC2CUM9RJR25_RTRMADP_2_AUTOS-TECH-NVIDIA.JPG?1655002175",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Nvidia on Wednesday sought EU antitrust approval of its $54 billion takeover of British chip designer Arm, according to a European Commission filing, with regulators likely to echo worries similar to those voiced by the UK watchdog last month.",
"url": "https://finnhub.io/api/news?id=6fa966b49bd5613b4f4d0f44049ff657e1e2092612c45536c81803f689056227"
}, {
"category": "company",
"datetime": 1631104615,
"headline": "What WSJ's Joanna Stern expects to see from Apple's event next week",
"id": 70390177,
"image": "https://image.cnbcfm.com/api/v1/image/106938668-16311169111631116907-18558541912-1080pnbcnews.jpg?v=1631116910",
"related": "AAPL",
"source": "CNBC",
"summary": "Joanna Stern, WSJ personal tech columnist, joins 'Tech Check' to discuss what she's expecting from Apple's 'California Streaming' event next Tuesday.",
"url": "https://finnhub.io/api/news?id=cfb78ee7a9aa56c5b01bfd9ed1a879fd2a0d33ed2f1c83e8224577718321e109"
}, {
"category": "company",
"datetime": 1631104320,
"headline": "GSAT Stock: The Huge Reason Globalstar Shares Are Skyrocketing Today",
"id": 70415413,
"image": "https://investorplace.com/wp-content/uploads/2019/08/telecom1600e.jpg",
"related": "AAPL",
"source": "InvestorPlace",
"summary": "Today, investors in Globalstar and GSAT stock are seeing intense buying pressure as traders speculate on an Apple partnership.",
"url": "https://finnhub.io/api/news?id=205d161286433a286beb75319fa0ddb57c9768fb808c7b4891045d6c5b273a64"
}, {
"category": "company",
"datetime": 1631103600,
"headline": "US STOCKS-Wall Street falls as growth worries grip investors",
"id": 70413236,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-09-08T113918Z_1_DO1_RTRLXPP_2_LYNXPACKAGER.JPG?131447073",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Wall Street indexes dropped on Wednesday on concerns that the spread of the Delta coronavirus variant could slow economic growth and on uncertainty over the timeline for the Federal Reserve to pull back its accommodative policies.",
"url": "https://finnhub.io/api/news?id=052bab0dd27e9188ec113bedf37d2a762ccf898d1b80a087716948fd7fc19255"
}, {
"category": "company",
"datetime": 1631103371,
"headline": "IT guy-in-chief: president tries to fix El Salvador's bitcoin woes",
"id": 70382667,
"image": "",
"related": "AAPL",
"source": "Finnhub",
"summary": "SAN SALVADOR -El Salvador's President Nayib Bukele stepped in on Wednesday to closely manage the fraught roll-out of a payments app that underpins the nation's adoption of bitcoin as legal tender,... | September 8, 2021",
"url": "https://finnhub.io/api/news?id=af6c4bc40539fd447a517974171da37ead843b0541c5b1f61ac4c466ed08b1c2"
}, {
"category": "company",
"datetime": 1631103120,
"headline": "Nvidia seeks EU approval for Arm takeover, Reuters reports",
"id": 70415920,
"image": "",
"related": "AAPL",
"source": "Thefly.com",
"summary": "Nvidia (NVDA) is seeking ... NVDA, SFTBY, SSNLF, QCOM, AAPL, MRVL, AVGO",
"url": "https://finnhub.io/api/news?id=46ce71906da2fd8407baf9c3bf3c86fbe1e5932d96ad96507700640d7b286342"
}, {
"category": "company",
"datetime": 1631102700,
"headline": "Nvidia seeks EU approval for Arm deal, EU decision due Oct. 13",
"id": 70413811,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2021-04-12T122442Z_1086843909_RC2CUM9RJR25_RTRMADP_2_AUTOS-TECH-NVIDIA.JPG?1774618460",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Nvidia on Wednesday filed for EU antitrust approval of its $54 billion takeover of British chip designer Arm, according to a submission on the European Commission website, kicking off a process likely to take several months.",
"url": "https://finnhub.io/api/news?id=c5d52e57c346158a8e99acaff9982868f0a3c26bf045a9f5ccaecf82af6936a5"
}, {
"category": "company",
"datetime": 1631100120,
"headline": "Wall Street in Fives - Must Read Lists at Midday",
"id": 70414482,
"image": "https://image.thefly.com/catalog/201810/img_66.png",
"related": "AAPL",
"source": "Thefly.com",
"summary": "Five top five lists with the news and calls moving stocks, powered by The Fly. NFLX, AAPL, ALB, SNY, KDMN, UHS, T, PYPL, LHCG, HCA, BKD, COIN, CTXS, GOOS, SSNLF, TGT, ASPS, ICUI, BBIG, PRGO, VRTV, REVG, SHW, PM, KHC, PATH, KFY",
"url": "https://finnhub.io/api/news?id=0beeee009de063f907ae4f125423a0a862171237791574fa211df2195d8ce7a7"
}, {
"category": "company",
"datetime": 1631099654,
"headline": "Apple: Time For A Pause?",
"id": 70380368,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1254939558/medium_image_1254939558.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "They say you should own Apple stock and not trade it. Read on to know AAPL stock's pullback range that is an opportunity to add to your long-term position.",
"url": "https://finnhub.io/api/news?id=0a81c98d3c83180fa35fb8aec03974a332bbdab6ac91a6fab3404d0e322b42f2"
}, {
"category": "company",
"datetime": 1631099100,
"headline": "Notable ETF Inflow Detected - IVV, AAPL, AMZN, V",
"id": 70412506,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?2072117235",
"related": "AAPL",
"source": "Nasdaq",
"summary": "Looking today at week-over-week shares outstanding changes among the universe of ETFs covered at ETF Channel, one standout is the iShares Core S\u0026P 500 ETF (Symbol: IVV) where we have detected an approximate $1.1 billion dollar inflow -- that's a 0.4% increase week over week",
"url": "https://finnhub.io/api/news?id=5284ef35032c6640773eaf7080bd459a030259dce6dfa0115c180503bc58a98b"
}, {
"category": "company",
"datetime": 1631096220,
"headline": "S\u0026P 500: More Short-Term Weakness Despite Tech Rally?",
"id": 70415922,
"image": "",
"related": "AAPL",
"source": "TalkMarkets",
"summary": "",
"url": "https://finnhub.io/api/news?id=c4b21b32adfe92c6d3172b91fda0b53d63d2df3b8880532f51b62ad8cb92227b"
}, {
"category": "company",
"datetime": 1631095800,
"headline": "Buy These 2 Stocks Before Apple Releases the Next iPhone",
"id": 70413726,
"image": "https://www.nasdaq.com/sites/acquia.prod/files/2019-05/0902-Q19%20Total%20Markets%20photos%20and%20gif_CC8.jpg?774351105",
"related": "AAPL",
"source": "Nasdaq",
"summary": "September has arrived and this is generally the month when smartphone giant Apple (NASDAQ: AAPL) refreshes its bread-and-butter product -- the iPhone. Apple is likely to launch the 2021 iteration of its smartphone on Sept. 14 as it has announced an Apple Event will take place tha",
"url": "https://finnhub.io/api/news?id=969b402e07713f22aeb21b9330ba065d66b223fd1090a3447d216595f3157516"
}, {
"category": "company",
"datetime": 1631095681,
"headline": "Ford poaches top tech executive from Apple",
"id": 70385080,
"image": "https://image.cnbcfm.com/api/v1/image/106938566-16311073241631107321-18556412815-1080pnbcnews.jpg?v=1631107323",
"related": "AAPL",
"source": "CNBC",
"summary": "CNBC's \"Squawk on the Street\" team discusses why Ford poached a top executive from Apple and what it means for both companies.",
"url": "https://finnhub.io/api/news?id=a7a4e1a8a94e2b0174c024618d47b2c837cb47efec45ba3f8c1685053a9c8980"
}, {
"category": "company",
"datetime": 1631091600,
"headline": "Apple Gets Close To Their VR/AR Headset",
"id": 70375455,
"image": "https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1325087896/medium_image_1325087896.jpg",
"related": "AAPL",
"source": "SeekingAlpha",
"summary": "Recent rumors suggest we are getting very close to an Apple VR/AR headset. Check out the short, medium and long-term effects on Apple's VR/AR headsets.",
"url": "https://finnhub.io/api/news?id=ff197f0bdfa940002b78d8ca875faebd069c74193364b4d13464199ae7363b66"