-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyahoo-finance-api-specification.yml
2760 lines (2759 loc) · 162 KB
/
yahoo-finance-api-specification.yml
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
openapi: 3.0.3
info:
title: Yahoo Finance API Specification
description: Real time low latency Yahoo Finance API for stock market, crypto currencies, and currency exchange
version: 1.0.0
servers:
- url: https://yfapi.net
description: Base URL
tags:
- name: API
paths:
/v6/finance/quote:
get:
tags:
- API
parameters:
- name: region
in: query
required: false
description: '`US` `AU` `CA` `FR` `DE` `HK` `IT` `ES` `GB` `IN`'
schema:
type: string
example: US
- name: lang
in: query
required: false
description: '`en` `fr` `de` `it` `es` `zh`'
schema:
type: string
example: en
- name: symbols
in: query
required: true
description: Multiple symbols separated by commas. Max is 10
schema:
type: string
example: AAPL,BTC-USD,EURUSD=X
operationId: quotes
description: Real time quote data for stocks, ETFs, mutuals funds, etc…
responses:
'200':
content:
application/json:
examples:
Response:
description: ''
summary: response
value:
quoteResponse:
error: null
result:
- ask: 117.27
askSize: 8
averageDailyVolume10Day: 233119800
averageDailyVolume3Month: 170533131
bid: 117.25
bidSize: 22
bookValue: 4.218
currency: USD
displayName: Apple
dividendDate: 1597276800
earningsTimestamp: 1596126600
earningsTimestampEnd: 1604318400
earningsTimestampStart: 1603882740
epsCurrentYear: 3.23
epsForward: 3.86
epsTrailingTwelveMonths: 3.296
esgPopulated: false
exchange: NMS
exchangeDataDelayedBy: 0
exchangeTimezoneName: America/New_York
exchangeTimezoneShortName: EDT
fiftyDayAverage: 112.823425
fiftyDayAverageChange: 4.4965744
fiftyDayAverageChangePercent: 0.03985497
fiftyTwoWeekHigh: 137.98
fiftyTwoWeekHighChange: -20.659996
fiftyTwoWeekHighChangePercent: -0.14973181
fiftyTwoWeekLow: 53.1525
fiftyTwoWeekLowChange: 64.167496
fiftyTwoWeekLowChangePercent: 1.2072338
fiftyTwoWeekRange: 53.1525 - 137.98
financialCurrency: USD
firstTradeDateMilliseconds: 345479400000
forwardPE: 30.393784
fullExchangeName: NasdaqGS
gmtOffSetMilliseconds: -14400000
language: en-US
longName: Apple Inc.
market: us_market
marketCap: 2006465249280
marketState: POST
messageBoardId: finmb_24937
postMarketChange: -0.25
postMarketChangePercent: -0.2130924
postMarketPrice: 117.07
postMarketTime: 1599686591
priceEpsCurrentYear: 36.32198
priceHint: 2
priceToBook: 27.81413
quoteSourceName: Nasdaq Real Time Price
quoteType: EQUITY
region: US
regularMarketChange: 4.5
regularMarketChangePercent: 3.9886546
regularMarketDayHigh: 119.14
regularMarketDayLow: 115.26
regularMarketDayRange: 115.26 - 119.14
regularMarketOpen: 117.26
regularMarketPreviousClose: 112.82
regularMarketPrice: 117.32
regularMarketTime: 1599681602
regularMarketVolume: 168404235
sharesOutstanding: 17102499840
shortName: Apple Inc.
sourceInterval: 15
symbol: AAPL
tradeable: false
trailingAnnualDividendRate: 0.782
trailingAnnualDividendYield: 0.0069313953
trailingPE: 35.59466
triggerable: true
twoHundredDayAverage: 85.99835
twoHundredDayAverageChange: 31.321648
twoHundredDayAverageChangePercent: 0.3642122
- ask: 211.63
askSize: 9
averageDailyVolume10Day: 43250000
averageDailyVolume3Month: 35562815
bid: 211.25
bidSize: 9
bookValue: 15.626
currency: USD
displayName: Microsoft
dividendDate: 1599696000
earningsTimestamp: 1595434164
earningsTimestampEnd: 1603742400
earningsTimestampStart: 1603310400
epsCurrentYear: 6.46
epsForward: 7.34
epsTrailingTwelveMonths: 5.76
esgPopulated: false
exchange: NMS
exchangeDataDelayedBy: 0
exchangeTimezoneName: America/New_York
exchangeTimezoneShortName: EDT
fiftyDayAverage: 212.50658
fiftyDayAverageChange: -1.2165833
fiftyDayAverageChangePercent: -0.0057249204
fiftyTwoWeekHigh: 232.86
fiftyTwoWeekHighChange: -21.570007
fiftyTwoWeekHighChangePercent: -0.092630796
fiftyTwoWeekLow: 132.52
fiftyTwoWeekLowChange: 78.76999
fiftyTwoWeekLowChangePercent: 0.59440076
fiftyTwoWeekRange: 132.52 - 232.86
financialCurrency: USD
firstTradeDateMilliseconds: 511108200000
forwardPE: 28.786102
fullExchangeName: NasdaqGS
gmtOffSetMilliseconds: -14400000
language: en-US
longName: Microsoft Corporation
market: us_market
marketCap: 1598968692736
marketState: POST
messageBoardId: finmb_21835
postMarketChange: -61.5672
postMarketChangePercent: -29.13872
postMarketPrice: 149.7228
postMarketTime: 1599686588
priceEpsCurrentYear: 32.707428
priceHint: 2
priceToBook: 13.521694
quoteSourceName: Nasdaq Real Time Price
quoteType: EQUITY
region: US
regularMarketChange: 8.62999
regularMarketChangePercent: 4.2583585
regularMarketDayHigh: 214.8399
regularMarketDayLow: 206.7
regularMarketDayRange: 206.7 - 214.8399
regularMarketOpen: 207.6
regularMarketPreviousClose: 202.66
regularMarketPrice: 211.29
regularMarketTime: 1599681601
regularMarketVolume: 43764495
sharesOutstanding: 7567649792
shortName: Microsoft Corporation
sourceInterval: 15
symbol: MSFT
tradeable: false
trailingAnnualDividendRate: 2.04
trailingAnnualDividendYield: 0.01006612
trailingPE: 36.68229
triggerable: true
twoHundredDayAverage: 186.7529
twoHundredDayAverageChange: 24.537094
twoHundredDayAverageChangePercent: 0.13138802
description: ''
/v7/finance/options/{symbol}:
get:
tags:
- API
parameters:
- name: date
in: query
required: false
description: 'example: 1510876800'
schema:
type: number
- name: symbol
in: path
required: true
schema:
type: string
example: AAPL
properties:
symbol:
type: string
example: AAPL
operationId: options
description: Get option chain for a particular symbol
responses:
'200':
content:
application/json:
examples:
Response:
description: ''
summary: response
value:
optionChain:
error: null
result:
- expirationDates:
- 1599782400
- 1600387200
- 1600992000
- 1601596800
- 1602201600
- 1602806400
- 1603411200
- 1605830400
- 1608249600
- 1610668800
- 1616112000
- 1618531200
- 1623974400
- 1631836800
- 1642723200
- 1655424000
- 1663286400
hasMiniOptions: false
options:
- calls:
- ask: 65.15
bid: 64.35
change: 3.3999977
contractSize: REGULAR
contractSymbol: AAPL200911C00052500
currency: USD
expiration: 1599782400
impliedVolatility: 4.597660502929687
inTheMoney: true
lastPrice: 64.6
lastTradeDate: 1599680842
openInterest: 275
percentChange: 5.555552
strike: 52.5
volume: 143
- ask: 63.9
bid: 63.1
change: 4.199997
contractSize: REGULAR
contractSymbol: AAPL200911C00053750
currency: USD
expiration: 1599782400
impliedVolatility: 4.476566904296874
inTheMoney: true
lastPrice: 64.2
lastTradeDate: 1599681239
openInterest: 261
percentChange: 6.9999948
strike: 53.75
volume: 147
expirationDate: 1599782400
hasMiniOptions: false
puts:
- ask: 0.01
bid: 0
change: 0
contractSize: REGULAR
contractSymbol: AAPL200911P00052500
currency: USD
expiration: 1599782400
impliedVolatility: 2.8750028125
inTheMoney: false
lastPrice: 0.01
lastTradeDate: 1599589974
openInterest: 1143
percentChange: 0
strike: 52.5
volume: 53
- ask: 0.01
bid: 0
change: 0
contractSize: REGULAR
contractSymbol: AAPL200911P00053750
currency: USD
expiration: 1599782400
impliedVolatility: 2.750003125
inTheMoney: false
lastPrice: 0.01
lastTradeDate: 1599246781
openInterest: 40
percentChange: 0
strike: 53.75
volume: 28
quote:
ask: 117.27
askSize: 8
averageDailyVolume10Day: 233119800
averageDailyVolume3Month: 170533131
bid: 117.25
bidSize: 22
bookValue: 4.218
currency: USD
displayName: Apple
dividendDate: 1597276800
earningsTimestamp: 1596126600
earningsTimestampEnd: 1604318400
earningsTimestampStart: 1603882740
epsCurrentYear: 3.23
epsForward: 3.86
epsTrailingTwelveMonths: 3.296
esgPopulated: false
exchange: NMS
exchangeDataDelayedBy: 0
exchangeTimezoneName: America/New_York
exchangeTimezoneShortName: EDT
fiftyDayAverage: 112.823425
fiftyDayAverageChange: 4.4965744
fiftyDayAverageChangePercent: 0.03985497
fiftyTwoWeekHigh: 137.98
fiftyTwoWeekHighChange: -20.659996
fiftyTwoWeekHighChangePercent: -0.14973181
fiftyTwoWeekLow: 53.1525
fiftyTwoWeekLowChange: 64.167496
fiftyTwoWeekLowChangePercent: 1.2072338
fiftyTwoWeekRange: 53.1525 - 137.98
financialCurrency: USD
firstTradeDateMilliseconds: 345479400000
forwardPE: 30.393784
fullExchangeName: NasdaqGS
gmtOffSetMilliseconds: -14400000
language: en-US
longName: Apple Inc.
market: us_market
marketCap: 2006465249280
marketState: POST
messageBoardId: finmb_24937
postMarketChange: -0.20999908
postMarketChangePercent: -0.17899683
postMarketPrice: 117.11
postMarketTime: 1599686868
priceEpsCurrentYear: 36.32198
priceHint: 2
priceToBook: 27.81413
quoteSourceName: Nasdaq Real Time Price
quoteType: EQUITY
region: US
regularMarketChange: 4.5
regularMarketChangePercent: 3.9886546
regularMarketDayHigh: 119.14
regularMarketDayLow: 115.26
regularMarketDayRange: 115.26 - 119.14
regularMarketOpen: 117.26
regularMarketPreviousClose: 112.82
regularMarketPrice: 117.32
regularMarketTime: 1599681602
regularMarketVolume: 168404235
sharesOutstanding: 17102499840
shortName: Apple Inc.
sourceInterval: 15
symbol: AAPL
tradeable: false
trailingAnnualDividendRate: 0.782
trailingAnnualDividendYield: 0.0069313953
trailingPE: 35.59466
triggerable: true
twoHundredDayAverage: 85.99835
twoHundredDayAverageChange: 31.321648
twoHundredDayAverageChangePercent: 0.3642122
strikes:
- 52.5
- 53.75
- 55
- 56.25
- 57.5
- 58.75
- 60
- 61.25
- 62.5
- 63.75
- 65
- 66.25
- 67.5
- 68.75
- 70
- 71.25
- 72.5
- 73.75
- 75
- 76.25
- 77.5
- 78.75
- 80
- 81.25
- 82.5
- 83.75
- 85
- 86.25
- 87.5
- 88.75
- 90
- 91.25
- 92.5
- 93.75
- 95
- 96.25
- 97.5
- 98.75
- 100
- 101.25
- 102.5
- 103.75
- 105
- 106.25
- 107.5
- 108.75
- 110
- 111.25
- 112.5
- 113.75
- 115
- 116.25
- 117.5
- 118.75
- 120
- 121.25
- 122.5
- 123.75
- 125
- 126.25
- 127.5
- 128.75
- 130
- 131.25
- 132.5
- 133.75
- 135
- 136.25
- 137.5
- 138.75
- 140
- 141.25
- 142.5
- 143.75
- 145
- 146
- 147.5
- 149
- 150
- 152.5
- 155
- 157.5
- 160
- 162.5
- 165
- 167.5
- 170
- 172.5
- 175
- 177.5
- 180
- 182.5
- 185
- 190
- 210
- 215
- 220
- 225
- 230
- 235
- 240
- 245
- 250
- 255
- 260
- 265
- 270
- 275
- 280
- 285
- 290
- 295
- 300
- 305
- 310
- 315
- 320
- 325
- 330
- 335
- 340
- 345
- 350
- 355
- 360
- 365
- 370
- 375
- 380
- 385
- 390
- 395
- 400
- 405
- 410
- 415
- 420
- 425
- 430
- 435
- 440
- 445
- 450
- 455
- 460
- 465
- 470
- 475
- 480
- 485
- 490
- 495
- 500
- 505
- 510
- 515
- 520
- 525
- 530
- 535
- 540
- 545
- 550
- 555
- 560
- 565
- 570
- 575
- 580
- 590
- 600
- 610
- 620
- 630
- 640
- 650
- 660
- 670
- 680
- 690
- 700
- 710
- 720
- 730
underlyingSymbol: AAPL
description: ''
/v8/finance/spark:
get:
tags:
- API
parameters:
- name: interval
in: query
required: false
description: '`1m` `5m` `15m` `1d` `1wk` `1mo`'
schema:
type: string
example: 1d
- name: range
in: query
required: false
description: '`1d` `5d` `1mo` `3mo` `6mo` `1y` `5y` `max`'
schema:
type: string
example: 1mo
- name: symbols
in: query
required: true
description: Separated by comm. Max 10
schema:
type: string
example: AAPL,MSFT
operationId: history
description: Stock history
responses:
'200':
content:
application/json:
examples:
Response:
description: ''
summary: response
value:
MSFT:
previousClose: null
symbol: MSFT
chartPreviousClose: 252.46
timestamp:
- 1620653400
- 1620739800
- 1620826200
- 1620912600
- 1620999000
- 1621258200
- 1621344600
- 1621431000
- 1621517400
- 1621603800
- 1621863000
- 1621949400
- 1622035800
- 1622122200
- 1622208600
- 1622554200
- 1622640600
- 1622727000
- 1622813400
- 1623072600
- 1623182402
close:
- 247.18
- 246.23
- 239
- 243.03
- 248.15
- 245.18
- 243.08
- 243.12
- 246.48
- 245.17
- 250.78
- 251.72
- 251.49
- 249.31
- 249.68
- 247.4
- 247.3
- 245.71
- 250.79
- 253.81
- 252.57
end: null
start: null
dataGranularity: 300
AAPL:
previousClose: null
symbol: AAPL
chartPreviousClose: 130.21
timestamp:
- 1620653400
- 1620739800
- 1620826200
- 1620912600
- 1620999000
- 1621258200
- 1621344600
- 1621431000
- 1621517400
- 1621603800
- 1621863000
- 1621949400
- 1622035800
- 1622122200
- 1622208600
- 1622554200
- 1622640600
- 1622727000
- 1622813400
- 1623072600
- 1623182403
close:
- 126.85
- 125.91
- 122.77
- 124.97
- 127.45
- 126.27
- 124.85
- 124.69
- 127.31
- 125.43
- 127.1
- 126.9
- 126.85
- 125.28
- 124.61
- 124.28
- 125.06
- 123.54
- 125.89
- 125.9
- 126.74
end: null
start: null
dataGranularity: 300
description: ''
/v11/finance/quoteSummary/{symbol}:
get:
tags:
- API
parameters:
- name: lang
in: query
required: false
description: '`en` `fr` `de` `it` `es` `zh`'
schema:
type: string
example: en
- name: region
in: query
required: false
description: '`US` `AU` `CA` `FR` `DE` `HK` `US` `IT` `ES` `GB` `IN`'
schema:
type: string
example: US
- name: modules
in: query
required: true
description: '`summaryDetail` `assetProfile` `fundProfile` `financialData` `defaultKeyStatistics` `calendarEvents` `incomeStatementHistory` `incomeStatementHistoryQuarterly` `cashflowStatementHistory` `balanceSheetHistory` `earnings` `earningsHistory` `insiderHolders` `cashflowStatementHistory` `cashflowStatementHistoryQuarterly` `insiderTransactions` `secFilings` `indexTrend` `sectorTrend` `earningsTrend` `netSharePurchaseActivity` `upgradeDowngradeHistory` `institutionOwnership` `recommendationTrend` `balanceSheetHistory` `balanceSheetHistoryQuarterly` `fundOwnership` `majorDirectHolders` `majorHoldersBreakdown`, `price`, `quoteType`, `esgScores`'
schema:
type: string
example: defaultKeyStatistics,assetProfile
- name: symbol
in: path
required: true
description: A single symbol
schema:
type: string
example: AAPL
operationId: stock details
description: |-
Get very detailed information for a particular stock.
The next portions of data can be retrieved with the service:
`summaryDetail` `assetProfile` `fundProfile` `financialData` `defaultKeyStatistics` `calendarEvents` `incomeStatementHistory` `incomeStatementHistoryQuarterly` `cashflowStatementHistory` `balanceSheetHistory` `earnings` `earningsHistory` `insiderHolders` `cashflowStatementHistory` `cashflowStatementHistoryQuarterly` `insiderTransactions` `secFilings` `indexTrend` `sectorTrend` `earningsTrend` `netSharePurchaseActivity` `upgradeDowngradeHistory` `institutionOwnership` `recommendationTrend` `balanceSheetHistory` `balanceSheetHistoryQuarterly` `fundOwnership` `majorDirectHolders` `majorHoldersBreakdown`, `price`, `quoteType`, `esgScores`
responses:
'200':
content:
application/json:
examples:
Response:
description: ''
summary: response
value:
quoteSummary:
error: null
result:
- assetProfile:
address1: One Apple Park Way
auditRisk: 1
boardRisk: 1
city: Cupertino
companyOfficers:
- age: 58
exercisedValue:
fmt: null
longFmt: '0'
raw: 0
fiscalYear: 2019
maxAge: 1
name: Mr. Timothy D. Cook
title: CEO & Director
totalPay:
fmt: 11.56M
longFmt: 11,555,466
raw: 11555466
unexercisedValue:
fmt: null
longFmt: '0'
raw: 0
yearBorn: 1961
- age: 55
exercisedValue:
fmt: null
longFmt: '0'
raw: 0
fiscalYear: 2019
maxAge: 1
name: Mr. Luca Maestri
title: CFO & Sr. VP
totalPay:
fmt: 3.58M
longFmt: 3,576,221
raw: 3576221
unexercisedValue:
fmt: null
longFmt: '0'
raw: 0
yearBorn: 1964
- age: 55
exercisedValue:
fmt: null
longFmt: '0'
raw: 0
fiscalYear: 2019
maxAge: 1
name: Mr. Jeffrey E. Williams
title: Chief Operating Officer
totalPay:
fmt: 3.57M
longFmt: 3,574,503
raw: 3574503
unexercisedValue:
fmt: null
longFmt: '0'
raw: 0
yearBorn: 1964
- age: 55
exercisedValue:
fmt: null
longFmt: '0'
raw: 0
fiscalYear: 2019
maxAge: 1
name: Ms. Katherine L. Adams
title: Sr. VP, Gen. Counsel & Sec.
totalPay:
fmt: 3.6M
longFmt: 3,598,384
raw: 3598384
unexercisedValue:
fmt: null
longFmt: '0'
raw: 0
yearBorn: 1964
- age: 52
exercisedValue:
fmt: null
longFmt: '0'
raw: 0
fiscalYear: 2019
maxAge: 1
name: Ms. Deirdre O'Brien
title: Sr. VP of People & Retail
totalPay:
fmt: 2.69M
longFmt: 2,690,253
raw: 2690253
unexercisedValue:
fmt: null
longFmt: '0'
raw: 0
yearBorn: 1967
compensationAsOfEpochDate: 1577750400
compensationRisk: 3
country: United States
fullTimeEmployees: 137000
governanceEpochDate: 1575849600
industry: Consumer Electronics
longBusinessSummary: Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide. It also sells various related services. The company offers iPhone, a line of smartphones; Mac, a line of personal computers; iPad, a line of multi-purpose tablets; and wearables, home, and accessories comprising AirPods, Apple TV, Apple Watch, Beats products, HomePod, iPod touch, and other Apple-branded and third-party accessories. It also provides digital content stores and streaming services; AppleCare support services; and iCloud, a cloud service, which stores music, photos, contacts, calendars, mail, documents, and others. In addition, the company offers various service, such as Apple Arcade, a game subscription service; Apple Card, a co-branded credit card; Apple News+, a subscription news and magazine service; and Apple Pay, a cashless payment service, as well as licenses its intellectual property, and provides other related services. The company serves consumers, and small and mid-sized businesses; and the education, enterprise, and government markets. It sells and delivers third-party applications for its products through the App Store, Mac App Store, and Watch App Store. The company also sells its products through its retail and online stores, and direct sales force; and third-party cellular network carriers, wholesalers, retailers, and resellers. Apple Inc. has a collaboration with Google to develop COVID-19 tracking system for Android and iOS devices. Apple Inc. was founded in 1977 and is headquartered in Cupertino, California.
maxAge: 86400
overallRisk: 1
phone: 408-996-1010
sector: Technology
shareHolderRightsRisk: 1
state: CA
website: http://www.apple.com
zip: '95014'
defaultKeyStatistics:
52WeekChange:
fmt: 101.83%
raw: 1.0183372
SandP52WeekChange:
fmt: 11.03%
raw: 0.11026919
annualHoldingsTurnover: {}
annualReportExpenseRatio: {}
beta:
fmt: '1.28'
raw: 1.284838
beta3Year: {}
bookValue:
fmt: '4.22'
raw: 4.218
category: null
dateShortInterest:
fmt: '2020-08-14'
raw: 1597363200
earningsQuarterlyGrowth:
fmt: 12.00%
raw: 0.12
enterpriseToEbitda:
fmt: '24.90'
raw: 24.897
enterpriseToRevenue:
fmt: '7.15'
raw: 7.152
enterpriseValue:
fmt: 1.96T
longFmt: 1,958,669,058,048
raw: 1958669058048
fiveYearAverageReturn: {}
floatShares:
fmt: 17.09B
longFmt: 17,085,433,464
raw: 17085433464
forwardEps:
fmt: '3.86'
raw: 3.86
forwardPE:
fmt: '30.39'
raw: 30.393784
fundFamily: null
fundInceptionDate: {}
heldPercentInsiders:
fmt: 0.07%
raw: 0.00066
heldPercentInstitutions:
fmt: 62.12%
raw: 0.62115
lastCapGain: {}
lastDividendValue: {}
lastFiscalYearEnd:
fmt: '2019-09-28'
raw: 1569628800
lastSplitDate:
fmt: '2020-08-31'
raw: 1598832000
lastSplitFactor: '4:1'
legalType: null
maxAge: 1
morningStarOverallRating: {}
morningStarRiskRating: {}
mostRecentQuarter:
fmt: '2020-06-27'
raw: 1593216000
netIncomeToCommon:
fmt: 58.42B
longFmt: 58,424,000,512
raw: 58424000512
nextFiscalYearEnd:
fmt: '2021-09-28'
raw: 1632787200
pegRatio:
fmt: '2.80'
raw: 2.8
priceHint:
fmt: '2'
longFmt: '2'
raw: 2
priceToBook:
fmt: '27.81'
raw: 27.81413
priceToSalesTrailing12Months: {}
profitMargins:
fmt: 21.33%
raw: 0.21334
revenueQuarterlyGrowth: {}
sharesOutstanding:
fmt: 17.1B
longFmt: 17,102,499,840
raw: 17102499840
sharesPercentSharesOut:
fmt: 0.55%
raw: 0.0055
sharesShort:
fmt: 94.64M
longFmt: 94,635,016
raw: 94635016
sharesShortPreviousMonthDate:
fmt: '2020-07-15'
raw: 1594771200
sharesShortPriorMonth:
fmt: 140.94M
longFmt: 140,938,424
raw: 140938424
shortPercentOfFloat:
fmt: 0.55%
raw: 0.0055
shortRatio:
fmt: '0.57'
raw: 0.57
threeYearAverageReturn: {}
totalAssets: {}
trailingEps: