-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.raml
2028 lines (2028 loc) · 55.4 KB
/
api.raml
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
#%RAML 1.0
types:
ExchangeWithListedTickers:
type: object
properties:
message?:
description: success or error message
type: string
payload?: ExchangeWithTickers
status?:
description: True if data is found and valid
type: boolean
_BalanceSheet:
type: object
properties:
accounts_payable?:
description: Accounts Payable (Float)
type: number
accumulated_amortization?:
description: Accumulated Amortization (Float)
type: number
accumulated_depreciation?:
description: Accumulated Depreciation (Float)
type: number
accumulated_other_comprehensive_income?:
description: Accumulated other comprehensive income (Float)
type: number
additional_paid_in_capital?:
description: Additional paid capital (Float)
type: number
balance_sheet_id?:
description: unique balance sheet id
type: string
capital_lease_obligations?:
description: Capital Lease obligations (Float)
type: number
capital_surplus?:
description: Capital Surplus (Float)
type: number
cash?:
description: Cash (Float)
type: number
cash_and_short_term_investments?:
description: Cash & Short term investments (Float)
type: number
common_stock?:
description: Common Stock (Float)
type: number
common_stock_shares_outstanding?:
description: Common Stock Shares Outstanding (Float)
type: number
common_stock_total_equity?:
description: Common Stock total equity (Float)
type: number
currency?:
description: currency code
type: string
date?:
description: date
type: date-only
deferred_long_term_liability?:
description: Deferred long term liability (Float)
type: number
earnings_assets?:
description: Earnings Assets (Float)
type: number
fundamental_id?:
description: fundamental id
type: string
good_will?:
description: Good Will (Float)
type: number
intangible_assets?:
description: Intangible Assets (Float)
type: number
inventory?:
description: Inventory Value (Float)
type: number
long_term_debt?:
description: Long Term Debt (Float)
type: number
long_term_debt_total?:
description: Long term debt total (Float)
type: number
long_term_investments?:
description: Long Term Investments (Float)
type: number
negative_good_will?:
description: Negative good will (Float)
type: number
net_debt?:
description: Net Debt (Float)
type: number
net_invested_capital?:
description: Net Invested Capital (Float)
type: number
net_receivables?:
description: Net Receivables (Float)
type: number
net_tangible_assets?:
description: Net Tangible Assets (Float)
type: number
networking_capital?:
description: Networking Capital (Float)
type: number
non_controlling_interest_in_consolidated_equity?:
description: Non Controlling Interest in consolidated equity (Float)
type: number
non_current_assets_other?:
description: Non Current Assets Other (Float)
type: number
non_current_liabilities_other?:
description: Non Current liabilities Other (Float)
type: number
non_current_liabilities_total?:
description: Non Current liabilities Total (Float)
type: number
other_assets?:
description: Other Assets (Float)
type: number
other_current_assets?:
description: Other Currency Assets (Float)
type: number
other_current_liability?:
description: Other Current Liability (Float)
type: number
other_liability?:
description: Other Liability (Float)
type: number
other_stock_holder_equity?:
description: Other Stock Holder Equity (Float)
type: number
preferred_stock_redeemable?:
description: Preferred Stock redeemable (Float)
type: number
preferred_stock_total_equity?:
description: Preferred Stock total equity (Float)
type: number
property_plant_and_equipment_gross?:
description: Property plant & Equipment Gross (Float)
type: number
property_plant_equipment?:
description: Property Plant Equipment (Float)
type: number
retained_earnings?:
description: Retained Earnings (Float)
type: number
retained_earnings_total_equity?:
description: Retained Earnings total equity (Float)
type: number
short_long_term_debt_total?:
description: Short & Long Term Debt Total (Float)
type: number
short_term_debt?:
description: Short Term Debt (Float)
type: number
short_term_investments?:
description: Short Term Investments (Float)
type: number
temporary_equity_redeemable_non_controlling_interests?:
description: temporary equity redeemable non controlling interests (Float)
type: number
total_assets?:
description: Total Assets (Float)
type: number
total_current_assets?:
description: Total Current Assets (Float)
type: number
total_current_liabilities?:
description: Total Current Liabilities (Float)
type: number
total_liability?:
description: Total Liability (Float)
type: number
total_permanent_equity?:
description: Total Permanent Equity (Float)
type: number
total_stock_holder_equity?:
description: Total Stock Holder Equity (Float)
type: number
treasury_stock?:
description: Treasury Stock (Float)
type: number
warrants?:
description: Warrants (Float)
type: number
QuarterlyBalanceSheet:
type: object
properties:
balance_sheet?: _BalanceSheet
filing_date?:
description: Date of filing
type: date-only
ExchangeListedCompaniesResponse:
type: object
properties:
message?:
description: success or error message
type: string
payload?: General
status?:
description: True if data is found and valid
type: boolean
Technicals:
type: object
properties:
beta?:
description: the expected move in a stock relative to movements in the overall market
type: number
date_created?:
description: Date of technical valuation
type: date-only
fundamental_id?:
description: Fundamental id
type: string
shares_short?:
description: Number of shares Shorted
type: integer
shares_short_prior_month?:
description: Number of shares Shorted Previous Month
type: integer
short_percent?:
description: Percentage of a shorted Shares
type: number
short_ratio?:
description: Ratio of shorted shares
type: number
t_200_day_ma?:
description: 200 days moving average
type: number
t_50_day_ma?:
description: 50 days moving average
type: number
t_52_week_high?:
description: 52 week high
type: number
t_52_week_low?:
description: 52 week low
type: number
GeneralAddress:
type: object
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
ExchangeListedStock:
type: object
properties:
message?:
description: success or error message
type: string
payload?: Stock
status?:
description: True if data is found and valid
type: boolean
Thumbnail:
type: object
properties:
resolutions?: Resolution
Resolution:
type: object
properties:
height?:
type: integer
tag?:
type: string
url?:
type: string
width?:
type: integer
Stock1:
type: object
properties:
code?:
description: The Code of the stock in exchange_code
type: string
currency?:
description: The Currency of the stock as listed in exchange_code
type: string
exchange_code?:
description: The name of the exchange_code this stock is listed in
type: string
name?:
description: Name of stock
type: string
stock_type?:
description: The type of stock as listed in exchange_code
type: string
AddressResponse:
type: object
properties:
message?:
description: message explaining the response
type: string
payload?:
description: Company Address
(amf-and):
- GeneralAddress
type: any
status?:
description: if status is True data was found and payload contains valid data
type: boolean
SplitDividends:
type: object
properties:
date_created?:
description: Date of valuation
type: date-only
dividend_date?:
description: Date
type: date-only
ex_dividend_date?:
description: Date
type: date-only
forward_annual_dividend_rate?:
description: Dividend Rate
type: number
forward_annual_dividend_yield?:
description: Dividend Yield
type: number
fundamental_id?:
description: Fundamental id
type: string
last_split_date?:
description: Date
type: date-only
last_split_factor?:
description: Last Split factor
type: string
number_of_dividends_by_year?: NumberDividendsByYear
payout_ratio?:
description: Payout Ratio
type: number
Highlights:
type: object
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
type: date-only
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
type: date-only
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
Contracts:
type: object
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
type: date-only
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
type: datetime
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
type: datetime
vega?:
description: vega in Float
type: number
volume?:
description: Volume Tradedin Float
type: number
StockListResponse:
type: object
properties:
message?:
description: response message
type: string
payload?: Stock
status?:
description: status indicating if request was successful or not
default: false
type: boolean
NewsResponseList:
type: object
properties:
message?:
type: string
payload?:
type: array
items: News
status?:
type: boolean
NumberDividendsByYear:
type: object
properties:
count?:
description: Number of
type: integer
year?:
description: Year
type: integer
RelatedTickers:
type: object
properties:
ticker?:
type: string
StockListRequest:
type: object
properties:
payload?: Stock1
QuarterlyBalanceResponse:
type: object
properties:
message?:
description: message explaining the response
type: string
payload?: QuarterlyBalanceSheet
status?:
description: if status is True data was found and payload contains valid data
type: boolean
Exchange:
type: object
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
OptionsResponse:
type: object
properties:
message?:
description: message explaining the response
type: string
payload?: Options
status?:
description: if status is True data was found and payload contains valid data
type: boolean
EODStockResponse:
type: object
properties:
message?:
description: success or error message
type: string
payload?: EODStock
status?:
description: True if data is found and valid
type: boolean
Sentiment:
type: object
properties:
created_at?:
type: string
favourite_count?:
type: integer
retweet_count?:
type: integer
sentiment?:
type: string
sentiment_id?:
type: string
stock_code?:
type: string
tweet_id?:
type: string
tweet_link?:
type: string
tweet_text?:
type: string
uid?:
type: string
GeneralResponse:
type: object
properties:
message?:
description: message explaining the response
type: string
payload?: General
status?:
description: if status is True data was found and payload contains valid data
type: boolean
ExchangeWithTickers:
type: object
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?: TickerExchangeCode
ExchangeResponse:
type: object
properties:
message?:
description: success or error message
type: string
payload?: Exchange
status?:
description: True if data is found and valid
type: boolean
EODStockListResponse:
type: object
properties:
message?:
description: success or error message
type: string
payload?:
type: array
items: EODStock
status?:
description: True if data is found and valid
type: boolean
PublicFundamentalsResponse:
type: object
properties:
message?:
description: Message about the payload received
type: string
payload?: PublicFundamental
status?:
description: Response Status
type: boolean
TickerExchangeCode:
type: object
properties:
stock_code?:
type: string
stock_id?:
type: string
GeneralListings:
type: object
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
AnnualBalanceSheetResponse:
type: object
properties:
message?:
description: message explaining the response
type: string
payload?: AnnualBalanceSheet
status?:
description: if status is True data was found and payload contains valid data
type: boolean
Payload:
type: object
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?:
type: array
items: Sentiment
statuses_count?:
type: integer
total_bearish?:
type: integer
total_bullish?:
type: integer
tweeter_profile_link?:
type: string
uid?:
type: string
EODStock:
type: object
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
type: date-only
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
GeneralContact:
type: object
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
type: date-only
web_url?:
description: official company website address
type: string
Analyst:
type: object
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
Options:
type: object
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
type: date-only
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
HighlightsResponse:
type: object
properties:
message?:
description: message explaining if company details where found or not
type: string
payload?: Highlights
status?:
description: if status is True data was found and payload contains valid company details
type: boolean
General:
type: object
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
type: date-only
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
type: date-only
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
ExchangeRequest:
type: object
properties:
payload?: Exchange
ShareStats:
type: object
properties:
date_created?:
description: Date of valuation
type: date-only
fundamental_id?:
description: Fundamental id
type: string
percent_insiders?:
description: Percentage of insider shares
type: number
percent_institutions?:
description: Percentage of shares owned by institutions
type: number
shares_float?:
description: shares float
type: integer
shares_outstanding?:
description: Number of shares outstanding
type: integer
shares_short?:
description: Number of shares Shorted
type: integer
shares_short_prior_month?:
description: Number of shares Shorted Previous Month
type: integer
short_percent_float?:
description: percentage of a company's stock that has been shorted by institutional traders, compared to the number of shares of a company's stock that are available to the public
type: number
short_percent_outstanding?:
description: number of shorted shares divided by the number of shares outstanding
type: number
short_ratio?:
description: Ratio of shorted shares
type: number
Valuations:
type: object
properties:
date_created?:
description: Date of valuation
type: date-only
enterprise_value?:
description: Enterprise value
type: integer
enterprise_value_ebitda?:
description: Enterprise value/EBITDA is a popular valuation manyple used to determine the fair market value of a company.
type: number
enterprise_value_revenue?:
description: The enterprise value-to-revenue manyple (EV/R) is a measure of the value of a stock that compares a company's enterprise value to its revenue.
type: number
forward_pe?:
description: A variation of the price-to-earnings ratio (P/E ratio) is the forward P/E ratio, which is based on a prediction of a company's future earnings