-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen-api.json
More file actions
3192 lines (3173 loc) · 111 KB
/
open-api.json
File metadata and controls
3192 lines (3173 loc) · 111 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"basePath": "/api",
"consumes": [
"application/json"
],
"securityDefinitions": {
"basicAuth": {
"type": "basic"
}
},
"parameters": {
"api_key": {
"in": "query",
"name": "api_key",
"description": "API key for authentication",
"required": true,
"type": "string"
}
},
"definitions": {
"AddressResponse": {
"properties": {
"message": {
"description": "message explaining the response",
"type": "string"
},
"payload": {
"allOf": [
{
"$ref": "#/definitions/GeneralAddress"
}
],
"description": "Company Address"
},
"status": {
"description": "if status is True data was found and payload contains valid data",
"type": "boolean"
}
},
"type": "object"
},
"Analyst": {
"properties": {
"buy": {
"description": "Buy Rating",
"type": "integer"
},
"fundamental_id": {
"description": "Fundamental id",
"type": "string"
},
"hold": {
"description": "Hold Rating",
"type": "integer"
},
"rating": {
"description": "Analyst Overall Rating",
"type": "number"
},
"sell": {
"description": "Sell Rating",
"type": "integer"
},
"strong_buy": {
"description": "Strong buy Rating",
"type": "integer"
},
"strong_sell": {
"description": "Strong sell Rating",
"type": "integer"
},
"target_price": {
"description": "Target Price",
"type": "number"
}
},
"type": "object"
},
"AnnualBalanceSheet": {
"properties": {
"balance_sheet": {
"$ref": "#/definitions/_BalanceSheet"
},
"filing_date": {
"description": "Date of filing",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"AnnualBalanceSheetResponse": {
"properties": {
"message": {
"description": "message explaining the response",
"type": "string"
},
"payload": {
"$ref": "#/definitions/AnnualBalanceSheet"
},
"status": {
"description": "if status is True data was found and payload contains valid data",
"type": "boolean"
}
},
"type": "object"
},
"BalanceSheets": {
"properties": {
"annual_balance_sheets": {
"$ref": "#/definitions/AnnualBalanceSheet"
},
"quarterly_balance_sheets": {
"$ref": "#/definitions/QuarterlyBalanceSheet"
}
},
"type": "object"
},
"ContractResponse": {
"properties": {
"message": {
"description": "message explaining the response",
"type": "string"
},
"payload": {
"$ref": "#/definitions/Contracts"
},
"status": {
"description": "if status is True data was found and payload contains valid data",
"type": "boolean"
}
},
"type": "object"
},
"Contracts": {
"properties": {
"ask": {
"description": "Ask Price in Float",
"type": "number"
},
"bid": {
"description": "Bidding Price in Float",
"type": "number"
},
"call_put_id": {
"description": "Call put id",
"type": "string"
},
"change": {
"description": "Amount Change in Float",
"type": "number"
},
"change_percent": {
"description": "Amount Change in Percentage",
"type": "number"
},
"contract_name": {
"description": "contract name",
"type": "string"
},
"contract_period": {
"description": "period of contract",
"type": "number"
},
"contract_size": {
"description": "size of contract",
"type": "number"
},
"currency": {
"description": "contract currency",
"type": "string"
},
"days_before_expiration": {
"description": "number of days before expiration Integer",
"type": "number"
},
"delta": {
"description": "delta in Float",
"type": "number"
},
"expiration_date": {
"description": "expiration date in ISO Format",
"format": "date",
"type": "string"
},
"gamma": {
"description": "gamma in Float",
"type": "number"
},
"implied_volatility": {
"description": "implied volatility in Float",
"type": "number"
},
"in_the_money": {
"description": "money in",
"type": "boolean"
},
"intrinsic_value": {
"description": "Intrinsic Value in Float",
"type": "number"
},
"last_price": {
"description": "last contract price in Float",
"type": "number"
},
"last_trade_datetime": {
"description": "date and time of last trade in ISO Format",
"format": "date-time",
"type": "string"
},
"open_interest": {
"description": "Open Interest in Float",
"type": "number"
},
"rho": {
"description": "Rho in Float",
"type": "number"
},
"strike": {
"description": "number of strikes in Float",
"type": "number"
},
"theoretical": {
"description": "theoretical in Float",
"type": "number"
},
"theta": {
"description": "theta in Float",
"type": "number"
},
"time_value": {
"description": "Time value in Float",
"type": "number"
},
"updated_at": {
"description": "Updated at datetime in ISO Format",
"format": "date-time",
"type": "string"
},
"vega": {
"description": "vega in Float",
"type": "number"
},
"volume": {
"description": "Volume Tradedin Float",
"type": "number"
}
},
"type": "object"
},
"EODStock": {
"properties": {
"adjusted_close": {
"description": "Stock Adjusted Close Position",
"type": "integer"
},
"close": {
"description": "Stock Close Position",
"type": "integer"
},
"code": {
"description": "stock code",
"type": "string"
},
"date": {
"description": "date of stock trade",
"format": "date",
"type": "string"
},
"high": {
"description": "Stock High Position",
"type": "integer"
},
"low": {
"description": "Stock Low Position",
"type": "integer"
},
"market_capitalization": {
"description": "market capitalization",
"type": "integer"
},
"name": {
"description": "name of exchange_code",
"type": "string"
},
"open": {
"description": "Stock Open Position",
"type": "integer"
},
"previous_close": {
"description": "Stock Previous Close Position",
"type": "integer"
},
"type": {
"description": "type of stock",
"type": "string"
},
"volume": {
"description": "Stock Volume Traded",
"type": "integer"
}
},
"type": "object"
},
"EODStockListResponse": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"items": {
"$ref": "#/definitions/EODStock"
},
"type": "array"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"EODStockResponse": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"$ref": "#/definitions/EODStock"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"Exchange": {
"properties": {
"code": {
"description": "exchange_code code",
"type": "string"
},
"country": {
"description": "the country the exchange_code operates in",
"type": "string"
},
"currency_symbol": {
"description": "the currency symbol of the country the exchange_code operates in",
"type": "string"
},
"exchange_id": {
"description": "exchange_code unique id",
"type": "string"
},
"name": {
"description": "name of exchange_code",
"type": "string"
},
"operating_mic": {
"description": "exchange_code operating mic",
"type": "string"
}
},
"type": "object"
},
"ExchangeListResponse": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"$ref": "#/definitions/Exchange"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"ExchangeListedCompaniesResponse": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"$ref": "#/definitions/General"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"ExchangeListedStock": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"$ref": "#/definitions/Stock"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"ExchangeRequest": {
"properties": {
"payload": {
"$ref": "#/definitions/Exchange"
}
},
"type": "object"
},
"ExchangeResponse": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"$ref": "#/definitions/Exchange"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"ExchangeWithListedTickers": {
"properties": {
"message": {
"description": "success or error message",
"type": "string"
},
"payload": {
"$ref": "#/definitions/ExchangeWithTickers"
},
"status": {
"description": "True if data is found and valid",
"type": "boolean"
}
},
"type": "object"
},
"ExchangeWithTickers": {
"properties": {
"code": {
"description": "exchange_code code",
"type": "string"
},
"country": {
"description": "the country the exchange_code operates in",
"type": "string"
},
"currency_symbol": {
"description": "the currency symbol of the country the exchange_code operates in",
"type": "string"
},
"exchange_id": {
"description": "exchange_code unique id",
"type": "string"
},
"name": {
"description": "name of exchange_code",
"type": "string"
},
"operating_mic": {
"description": "exchange_code operating mic",
"type": "string"
},
"tickers_list": {
"$ref": "#/definitions/TickerExchangeCode"
}
},
"type": "object"
},
"General": {
"properties": {
"cik": {
"description": "Company CIK Number",
"type": "string"
},
"country_name": {
"description": "the name of the country where the company is trading",
"type": "string"
},
"currency": {
"description": "currency symbol under which the company financials are declared",
"type": "string"
},
"cusip": {
"description": "Company CUSIP number",
"type": "string"
},
"description": {
"description": "Description of a company",
"type": "string"
},
"employer_id": {
"description": "Company Employer ID",
"type": "string"
},
"exchange": {
"description": "the exchange_code the company has been listed under",
"type": "string"
},
"fiscal_year_end": {
"description": "Date of Companies fiscal year end",
"format": "date",
"type": "string"
},
"fundamental_id": {
"description": "company unique id, used to create records related to this company details for example Highlights Information",
"type": "string"
},
"gic_group": {
"description": "The Global Industry Classification Standard Group",
"type": "string"
},
"gic_industry": {
"description": "The Global Industry Classification Standard Industry",
"type": "string"
},
"gic_sector": {
"description": "The Global Industry Classification Standard sector",
"type": "string"
},
"home_category": {
"description": "home category",
"type": "string"
},
"industry": {
"description": "The industry the company operates under",
"type": "string"
},
"international_domestic": {
"description": "true if company operates internationally and domestically",
"type": "boolean"
},
"ipo_date": {
"description": "Date of initial public offering",
"format": "date",
"type": "string"
},
"is_delisted": {
"description": "True if company is de_listed",
"type": "boolean"
},
"isin": {
"description": "Company ISIN number",
"type": "string"
},
"name": {
"description": "company name as registered in the place country listed",
"type": "string"
},
"sector": {
"description": "The business sector the company operates in",
"type": "string"
},
"stock_symbol": {
"description": "company stock_codes as listed in the stock exchange_code",
"type": "string"
},
"type": {
"description": "company type",
"type": "string"
}
},
"type": "object"
},
"GeneralAddress": {
"properties": {
"city": {
"description": "company address city",
"type": "string"
},
"country": {
"description": "Company Address country",
"type": "string"
},
"fundamental_id": {
"description": "a unique id for the General Fundamental Company Data",
"type": "string"
},
"state": {
"description": "Company Address state or province",
"type": "string"
},
"street": {
"description": "company address street name",
"type": "string"
},
"zip": {
"description": "Company Address zip or postal code",
"type": "string"
}
},
"type": "object"
},
"GeneralContact": {
"properties": {
"full_time_employees": {
"description": "Total number of full time employees",
"type": "integer"
},
"fundamental_id": {
"description": "a unique id for the General Fundamental Company Data",
"type": "string"
},
"logo_url": {
"description": "Link to Official Company logo",
"type": "string"
},
"phone": {
"description": "Official Company Phone Number",
"type": "string"
},
"updated_at": {
"description": "the date the company details where last updated",
"format": "date",
"type": "string"
},
"web_url": {
"description": "official company website address",
"type": "string"
}
},
"type": "object"
},
"GeneralListings": {
"properties": {
"exchange": {
"description": "Name of Exchange for this listing",
"type": "string"
},
"fundamental_id": {
"description": "a unique id for the General Fundamental Company Data",
"type": "string"
},
"listing_id": {
"description": "unique id for this listing",
"type": "string"
},
"name": {
"description": "Company Name in this listing",
"type": "string"
},
"stock_symbol": {
"description": "Stock Ticker symbol for this listing",
"type": "string"
}
},
"type": "object"
},
"GeneralOfficers": {
"properties": {
"fundamental_id": {
"description": "a unique id for the General Fundamental Company Data",
"type": "string"
},
"name": {
"description": "Name of officer",
"type": "string"
},
"title": {
"description": "Title of Company Officer",
"type": "string"
},
"year_born": {
"description": "Year of Birth",
"type": "string"
}
},
"type": "object"
},
"GeneralResponse": {
"properties": {
"message": {
"description": "message explaining the response",
"type": "string"
},
"payload": {
"$ref": "#/definitions/General"
},
"status": {
"description": "if status is True data was found and payload contains valid data",
"type": "boolean"
}
},
"type": "object"
},
"Highlights": {
"properties": {
"book_value": {
"description": "Net value of a company assets as found on its balance sheet",
"type": "number"
},
"date_created": {
"description": "date the highlights where created",
"format": "date",
"type": "string"
},
"diluted_eps_ttm": {
"description": "amount of income each receives if all of the dilute securities are realized, which is the amount of income that is available to the current common shareholders",
"type": "number"
},
"dividend_share": {
"description": "rewards that a company gives to its shareholders",
"type": "number"
},
"dividend_yield": {
"description": "amount of money a company pays shareholders for owning a ",
"type": "number"
},
"earnings_share": {
"description": "earnings per share (ESP) is a company net profit divided by the number of common shares it has outstanding",
"type": "number"
},
"ebitda": {
"description": "Earnings before Interest Taxes Depreciation and Amortization",
"type": "integer"
},
"eps_estimate_current_quarter": {
"description": "earnings per share (EPS) estimate for current quarter",
"type": "number"
},
"eps_estimate_current_year": {
"description": "earnings per share estimate for current year",
"type": "number"
},
"eps_estimate_next_quarter": {
"description": "earnings per share estimate for next quarter",
"type": "number"
},
"eps_estimate_next_year": {
"description": "earnings per share estimate for next year",
"type": "number"
},
"fundamental_id": {
"description": "unique company id for fundamental data",
"type": "string"
},
"growth_profit_ttm": {
"description": "profit a business makes after subtracting all the costs that are related to manufacturing and selling its products or services",
"type": "number"
},
"market_capitalization": {
"description": "Market Capitalization",
"type": "integer"
},
"market_capitalization_mln": {
"description": "market capitalization in millions",
"type": "integer"
},
"most_recent_quarter": {
"description": "MRQ refers to percent of revenues remaining after paying all expenses",
"format": "date",
"type": "string"
},
"operating_margin_ttm": {
"description": "measures the percent of revenues remaining after paying all operating expenses for trailing twelve months",
"type": "number"
},
"pe_ratio": {
"description": "Price Earnings Ratio",
"type": "number"
},
"peg_ratio": {
"description": "Price Earnings to Growth Ratio",
"type": "number"
},
"profit_margin": {
"description": "profit margin measures the degree to which a company makes money equals to revenue cost divided by Revenue",
"type": "number"
},
"quarterly_earnings_growth_yoy": {
"description": "an increase in the companys sales from one quarter to the next, compared on a year-over-year basis",
"type": "number"
},
"quarterly_revenue_growth_yoy": {
"description": "increase in the companys sales from one quarter to the next a good yoy growth is between 15 to 45%",
"type": "number"
},
"return_on_assets_ttm": {
"description": "income after taxes for the trailing twelve months divided by the average total assets",
"type": "number"
},
"return_on_equity_ttm": {
"description": "income available to common stockholders for the trailing twelve months divided by the average common equity expressed as a percentage",
"type": "number"
},
"revenue_per_share_ttm": {
"description": "Sales per share (Revenue) is a ratio that computes the total revenue earned for the trailing twelve months",
"type": "number"
},
"revenue_ttm": {
"description": "revenue a company earns over the trailing twelve months (TTM)",
"type": "number"
},
"target_price": {
"description": "The value an investor or analyst anticipates a stock will reach within a defined time period",
"type": "integer"
}
},
"type": "object"
},
"HighlightsResponse": {
"properties": {
"message": {
"description": "message explaining if company details where found or not",
"type": "string"
},
"payload": {
"$ref": "#/definitions/Highlights"
},
"status": {
"description": "if status is True data was found and payload contains valid company details",
"type": "boolean"
}
},
"type": "object"
},
"News": {
"properties": {
"link": {
"type": "string"
},
"providerPublishTime": {
"type": "integer"
},
"publisher": {
"type": "string"
},
"relatedTickers": {
"$ref": "#/definitions/RelatedTickers"
},
"thumbnail": {
"$ref": "#/definitions/Thumbnail"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"NewsResponseList": {
"properties": {
"message": {
"type": "string"
},
"payload": {
"items": {
"$ref": "#/definitions/News"
},
"type": "array"
},
"status": {
"type": "boolean"
}
},
"type": "object"
},
"NumberDividendsByYear": {
"properties": {
"count": {
"description": "Number of",
"type": "integer"
},
"year": {
"description": "Year",
"type": "integer"
}
},
"type": "object"
},
"Options": {
"properties": {
"currency": {
"description": "currency for trade",
"type": "string"
},
"exchange": {
"description": "exchange_code id for the options",
"type": "string"
},
"last_trade_date": {
"description": "last trade date",
"format": "date",
"type": "string"
},
"last_trade_price": {
"description": "last traded price",
"type": "string"
},
"options_id": {
"description": "will carry a unique options id",
"type": "string"
},
"stock_symbol": {
"description": "symbol for stock",
"type": "string"
}
},
"type": "object"
},
"OptionsResponse": {
"properties": {
"message": {
"description": "message explaining the response",
"type": "string"
},
"payload": {
"$ref": "#/definitions/Options"
},
"status": {
"description": "if status is True data was found and payload contains valid data",
"type": "boolean"
}
},
"type": "object"
},
"Payload": {
"properties": {
"followers_count": {
"type": "integer"
},
"friends_count": {
"type": "integer"
},
"location": {
"type": "string"
},
"name": {
"type": "string"
},
"profile_image_url": {
"type": "string"
},
"screen_name": {
"type": "string"
},
"sentiments": {
"items": {
"$ref": "#/definitions/Sentiment"
},
"type": "array"
},
"statuses_count": {
"type": "integer"
},
"total_bearish": {
"type": "integer"
},
"total_bullish": {
"type": "integer"
},
"tweeter_profile_link": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"PublicFundamental": {
"properties": {
"address": {
"$ref": "#/definitions/GeneralAddress"
},
"analyst_rankings": {
"$ref": "#/definitions/Analyst"
},
"balance_sheets": {
"$ref": "#/definitions/BalanceSheets"
},
"cik": {
"description": "Company CIK Number",
"type": "string"
},