@massive.com/client-js 9.0.0 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/dist/main.d.ts +840 -96
- package/dist/main.js +1 -1
- package/massive.com-client-js-9.1.0.tgz +0 -0
- package/package.json +5 -2
package/dist/main.d.ts
CHANGED
|
@@ -7356,6 +7356,183 @@ interface GetFuturesTrades200ResponseResultsInner {
|
|
|
7356
7356
|
*/
|
|
7357
7357
|
'timestamp': number;
|
|
7358
7358
|
}
|
|
7359
|
+
/**
|
|
7360
|
+
*
|
|
7361
|
+
* @export
|
|
7362
|
+
* @interface GetFuturesVXContractsNew200Response
|
|
7363
|
+
*/
|
|
7364
|
+
interface GetFuturesVXContractsNew200Response {
|
|
7365
|
+
/**
|
|
7366
|
+
* If present, this value can be used to fetch the next page.
|
|
7367
|
+
* @type {string}
|
|
7368
|
+
* @memberof GetFuturesVXContractsNew200Response
|
|
7369
|
+
*/
|
|
7370
|
+
'next_url'?: string;
|
|
7371
|
+
/**
|
|
7372
|
+
* A request id assigned by the server.
|
|
7373
|
+
* @type {string}
|
|
7374
|
+
* @memberof GetFuturesVXContractsNew200Response
|
|
7375
|
+
*/
|
|
7376
|
+
'request_id': string;
|
|
7377
|
+
/**
|
|
7378
|
+
* The results for this request.
|
|
7379
|
+
* @type {Array<GetFuturesVXContractsNew200ResponseResultsInner>}
|
|
7380
|
+
* @memberof GetFuturesVXContractsNew200Response
|
|
7381
|
+
*/
|
|
7382
|
+
'results': Array<GetFuturesVXContractsNew200ResponseResultsInner>;
|
|
7383
|
+
/**
|
|
7384
|
+
* The status of this request\'s response.
|
|
7385
|
+
* @type {string}
|
|
7386
|
+
* @memberof GetFuturesVXContractsNew200Response
|
|
7387
|
+
*/
|
|
7388
|
+
'status': GetFuturesVXContractsNew200ResponseStatusEnum;
|
|
7389
|
+
}
|
|
7390
|
+
/**
|
|
7391
|
+
* @export
|
|
7392
|
+
* @enum {string}
|
|
7393
|
+
*/
|
|
7394
|
+
declare enum GetFuturesVXContractsNew200ResponseStatusEnum {
|
|
7395
|
+
Ok = "OK"
|
|
7396
|
+
}
|
|
7397
|
+
/**
|
|
7398
|
+
*
|
|
7399
|
+
* @export
|
|
7400
|
+
* @interface GetFuturesVXContractsNew200ResponseResultsInner
|
|
7401
|
+
*/
|
|
7402
|
+
interface GetFuturesVXContractsNew200ResponseResultsInner {
|
|
7403
|
+
/**
|
|
7404
|
+
* The contract is still trading.
|
|
7405
|
+
* @type {boolean}
|
|
7406
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7407
|
+
*/
|
|
7408
|
+
'active': boolean;
|
|
7409
|
+
/**
|
|
7410
|
+
* A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today).
|
|
7411
|
+
* @type {string}
|
|
7412
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7413
|
+
*/
|
|
7414
|
+
'date': string;
|
|
7415
|
+
/**
|
|
7416
|
+
*
|
|
7417
|
+
* @type {number}
|
|
7418
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7419
|
+
*/
|
|
7420
|
+
'days_to_maturity'?: number;
|
|
7421
|
+
/**
|
|
7422
|
+
* The first date the contract trades.
|
|
7423
|
+
* @type {number}
|
|
7424
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7425
|
+
*/
|
|
7426
|
+
'first_trade_date'?: number;
|
|
7427
|
+
/**
|
|
7428
|
+
*
|
|
7429
|
+
* @type {string}
|
|
7430
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7431
|
+
*/
|
|
7432
|
+
'group_code'?: string;
|
|
7433
|
+
/**
|
|
7434
|
+
*
|
|
7435
|
+
* @type {string}
|
|
7436
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7437
|
+
*/
|
|
7438
|
+
'guid'?: string;
|
|
7439
|
+
/**
|
|
7440
|
+
* The last date the contract trades.
|
|
7441
|
+
* @type {number}
|
|
7442
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7443
|
+
*/
|
|
7444
|
+
'last_trade_date'?: number;
|
|
7445
|
+
/**
|
|
7446
|
+
*
|
|
7447
|
+
* @type {boolean}
|
|
7448
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7449
|
+
*/
|
|
7450
|
+
'latest'?: boolean;
|
|
7451
|
+
/**
|
|
7452
|
+
*
|
|
7453
|
+
* @type {string}
|
|
7454
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7455
|
+
*/
|
|
7456
|
+
'maturity_month'?: string;
|
|
7457
|
+
/**
|
|
7458
|
+
* The maximum order quantity.
|
|
7459
|
+
* @type {string}
|
|
7460
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7461
|
+
*/
|
|
7462
|
+
'max_order_quantity'?: string;
|
|
7463
|
+
/**
|
|
7464
|
+
* The minimum order quantity.
|
|
7465
|
+
* @type {string}
|
|
7466
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7467
|
+
*/
|
|
7468
|
+
'min_order_quantity'?: string;
|
|
7469
|
+
/**
|
|
7470
|
+
* The full name of the product.
|
|
7471
|
+
* @type {string}
|
|
7472
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7473
|
+
*/
|
|
7474
|
+
'name'?: string;
|
|
7475
|
+
/**
|
|
7476
|
+
* The unique identifier for the product.
|
|
7477
|
+
* @type {string}
|
|
7478
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7479
|
+
*/
|
|
7480
|
+
'product_code'?: string;
|
|
7481
|
+
/**
|
|
7482
|
+
*
|
|
7483
|
+
* @type {string}
|
|
7484
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7485
|
+
*/
|
|
7486
|
+
'security_id'?: string;
|
|
7487
|
+
/**
|
|
7488
|
+
*
|
|
7489
|
+
* @type {number}
|
|
7490
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7491
|
+
*/
|
|
7492
|
+
'settlement_date'?: number;
|
|
7493
|
+
/**
|
|
7494
|
+
* The tick size for settlement.
|
|
7495
|
+
* @type {number}
|
|
7496
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7497
|
+
*/
|
|
7498
|
+
'settlement_tick_size'?: number;
|
|
7499
|
+
/**
|
|
7500
|
+
* The tick size for spreads.
|
|
7501
|
+
* @type {number}
|
|
7502
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7503
|
+
*/
|
|
7504
|
+
'spread_tick_size'?: number;
|
|
7505
|
+
/**
|
|
7506
|
+
* The ticker for the contract.
|
|
7507
|
+
* @type {string}
|
|
7508
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7509
|
+
*/
|
|
7510
|
+
'ticker'?: string;
|
|
7511
|
+
/**
|
|
7512
|
+
* The tick size for trades.
|
|
7513
|
+
* @type {number}
|
|
7514
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7515
|
+
*/
|
|
7516
|
+
'trade_tick_size'?: number;
|
|
7517
|
+
/**
|
|
7518
|
+
* The trading venue (MIC) for the exchange on which this contract trades.
|
|
7519
|
+
* @type {string}
|
|
7520
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7521
|
+
*/
|
|
7522
|
+
'trading_venue'?: string;
|
|
7523
|
+
/**
|
|
7524
|
+
* The type of product, one of \'single\' or \'combo\'.
|
|
7525
|
+
* @type {string}
|
|
7526
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7527
|
+
*/
|
|
7528
|
+
'type'?: string;
|
|
7529
|
+
/**
|
|
7530
|
+
*
|
|
7531
|
+
* @type {string}
|
|
7532
|
+
* @memberof GetFuturesVXContractsNew200ResponseResultsInner
|
|
7533
|
+
*/
|
|
7534
|
+
'year_month': string;
|
|
7535
|
+
}
|
|
7359
7536
|
/**
|
|
7360
7537
|
*
|
|
7361
7538
|
* @export
|
|
@@ -7449,6 +7626,171 @@ interface GetFuturesVXExchanges200ResponseResultsInner {
|
|
|
7449
7626
|
*/
|
|
7450
7627
|
'url'?: string;
|
|
7451
7628
|
}
|
|
7629
|
+
/**
|
|
7630
|
+
*
|
|
7631
|
+
* @export
|
|
7632
|
+
* @interface GetFuturesVXProductsNew200Response
|
|
7633
|
+
*/
|
|
7634
|
+
interface GetFuturesVXProductsNew200Response {
|
|
7635
|
+
/**
|
|
7636
|
+
* If present, this value can be used to fetch the next page.
|
|
7637
|
+
* @type {string}
|
|
7638
|
+
* @memberof GetFuturesVXProductsNew200Response
|
|
7639
|
+
*/
|
|
7640
|
+
'next_url'?: string;
|
|
7641
|
+
/**
|
|
7642
|
+
* A request id assigned by the server.
|
|
7643
|
+
* @type {string}
|
|
7644
|
+
* @memberof GetFuturesVXProductsNew200Response
|
|
7645
|
+
*/
|
|
7646
|
+
'request_id': string;
|
|
7647
|
+
/**
|
|
7648
|
+
* The results for this request.
|
|
7649
|
+
* @type {Array<GetFuturesVXProductsNew200ResponseResultsInner>}
|
|
7650
|
+
* @memberof GetFuturesVXProductsNew200Response
|
|
7651
|
+
*/
|
|
7652
|
+
'results': Array<GetFuturesVXProductsNew200ResponseResultsInner>;
|
|
7653
|
+
/**
|
|
7654
|
+
* The status of this request\'s response.
|
|
7655
|
+
* @type {string}
|
|
7656
|
+
* @memberof GetFuturesVXProductsNew200Response
|
|
7657
|
+
*/
|
|
7658
|
+
'status': GetFuturesVXProductsNew200ResponseStatusEnum;
|
|
7659
|
+
}
|
|
7660
|
+
/**
|
|
7661
|
+
* @export
|
|
7662
|
+
* @enum {string}
|
|
7663
|
+
*/
|
|
7664
|
+
declare enum GetFuturesVXProductsNew200ResponseStatusEnum {
|
|
7665
|
+
Ok = "OK"
|
|
7666
|
+
}
|
|
7667
|
+
/**
|
|
7668
|
+
*
|
|
7669
|
+
* @export
|
|
7670
|
+
* @interface GetFuturesVXProductsNew200ResponseResultsInner
|
|
7671
|
+
*/
|
|
7672
|
+
interface GetFuturesVXProductsNew200ResponseResultsInner {
|
|
7673
|
+
/**
|
|
7674
|
+
* The asset class to which the product belongs.
|
|
7675
|
+
* @type {string}
|
|
7676
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7677
|
+
*/
|
|
7678
|
+
'asset_class'?: string;
|
|
7679
|
+
/**
|
|
7680
|
+
* The asset sub-class to which the product belongs.
|
|
7681
|
+
* @type {string}
|
|
7682
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7683
|
+
*/
|
|
7684
|
+
'asset_sub_class'?: string;
|
|
7685
|
+
/**
|
|
7686
|
+
* A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today).
|
|
7687
|
+
* @type {string}
|
|
7688
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7689
|
+
*/
|
|
7690
|
+
'date': string;
|
|
7691
|
+
/**
|
|
7692
|
+
*
|
|
7693
|
+
* @type {number}
|
|
7694
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7695
|
+
*/
|
|
7696
|
+
'display_factor'?: number;
|
|
7697
|
+
/**
|
|
7698
|
+
*
|
|
7699
|
+
* @type {string}
|
|
7700
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7701
|
+
*/
|
|
7702
|
+
'group_code'?: string;
|
|
7703
|
+
/**
|
|
7704
|
+
*
|
|
7705
|
+
* @type {number}
|
|
7706
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7707
|
+
*/
|
|
7708
|
+
'last_updated'?: number;
|
|
7709
|
+
/**
|
|
7710
|
+
*
|
|
7711
|
+
* @type {boolean}
|
|
7712
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7713
|
+
*/
|
|
7714
|
+
'latest'?: boolean;
|
|
7715
|
+
/**
|
|
7716
|
+
* The full name of the product.
|
|
7717
|
+
* @type {string}
|
|
7718
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7719
|
+
*/
|
|
7720
|
+
'name'?: string;
|
|
7721
|
+
/**
|
|
7722
|
+
* The quoted price for this product.
|
|
7723
|
+
* @type {string}
|
|
7724
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7725
|
+
*/
|
|
7726
|
+
'price_quotation'?: string;
|
|
7727
|
+
/**
|
|
7728
|
+
* The unique identifier for the product.
|
|
7729
|
+
* @type {string}
|
|
7730
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7731
|
+
*/
|
|
7732
|
+
'product_code'?: string;
|
|
7733
|
+
/**
|
|
7734
|
+
* The sector to which the product belongs.
|
|
7735
|
+
* @type {string}
|
|
7736
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7737
|
+
*/
|
|
7738
|
+
'sector'?: string;
|
|
7739
|
+
/**
|
|
7740
|
+
* The currency in which this product settles.
|
|
7741
|
+
* @type {string}
|
|
7742
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7743
|
+
*/
|
|
7744
|
+
'settlement_currency_code'?: string;
|
|
7745
|
+
/**
|
|
7746
|
+
* The method of settlement for this product (Financially Settled or Deliverable).
|
|
7747
|
+
* @type {string}
|
|
7748
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7749
|
+
*/
|
|
7750
|
+
'settlement_method'?: string;
|
|
7751
|
+
/**
|
|
7752
|
+
* The type of settlement for this product.
|
|
7753
|
+
* @type {string}
|
|
7754
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7755
|
+
*/
|
|
7756
|
+
'settlement_type'?: string;
|
|
7757
|
+
/**
|
|
7758
|
+
* The sub-sector to which the product belongs.
|
|
7759
|
+
* @type {string}
|
|
7760
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7761
|
+
*/
|
|
7762
|
+
'sub_sector'?: string;
|
|
7763
|
+
/**
|
|
7764
|
+
* The currency in which this product trades.
|
|
7765
|
+
* @type {string}
|
|
7766
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7767
|
+
*/
|
|
7768
|
+
'trade_currency_code'?: string;
|
|
7769
|
+
/**
|
|
7770
|
+
* The trading venue (MIC) for the exchange on which this contract trades.
|
|
7771
|
+
* @type {string}
|
|
7772
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7773
|
+
*/
|
|
7774
|
+
'trading_venue'?: string;
|
|
7775
|
+
/**
|
|
7776
|
+
* The type of product, one of \'single\' or \'combo\'.
|
|
7777
|
+
* @type {string}
|
|
7778
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7779
|
+
*/
|
|
7780
|
+
'type'?: string;
|
|
7781
|
+
/**
|
|
7782
|
+
* The unit of measure for this product.
|
|
7783
|
+
* @type {string}
|
|
7784
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7785
|
+
*/
|
|
7786
|
+
'unit_of_measure'?: string;
|
|
7787
|
+
/**
|
|
7788
|
+
* The quantity of the unit of measure for this product.
|
|
7789
|
+
* @type {number}
|
|
7790
|
+
* @memberof GetFuturesVXProductsNew200ResponseResultsInner
|
|
7791
|
+
*/
|
|
7792
|
+
'unit_of_measure_qty'?: number;
|
|
7793
|
+
}
|
|
7452
7794
|
/**
|
|
7453
7795
|
*
|
|
7454
7796
|
* @export
|
|
@@ -15990,12 +16332,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
15990
16332
|
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
15991
16333
|
* @param {string} [tickerLt] Filter less than the value.
|
|
15992
16334
|
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
15993
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
15994
|
-
* @param {string} [
|
|
15995
|
-
* @param {string} [
|
|
15996
|
-
* @param {string} [
|
|
15997
|
-
* @param {string} [
|
|
15998
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
16335
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16336
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16337
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16338
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16339
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
15999
16340
|
* @param {string} [firm] The name of the research firm or investment bank issuing the rating.
|
|
16000
16341
|
* @param {string} [firmAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16001
16342
|
* @param {string} [firmGt] Filter greater than the value.
|
|
@@ -16021,11 +16362,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16021
16362
|
* @param {string} [benzingaRatingIdLt] Filter less than the value.
|
|
16022
16363
|
* @param {string} [benzingaRatingIdLte] Filter less than or equal to the value.
|
|
16023
16364
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
16024
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
16365
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
16025
16366
|
* @param {*} [options] Override http request option.
|
|
16026
16367
|
* @throws {RequiredError}
|
|
16027
16368
|
*/
|
|
16028
|
-
getBenzingaV1AnalystInsights: (date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string,
|
|
16369
|
+
getBenzingaV1AnalystInsights: (date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, firm?: string, firmAnyOf?: string, firmGt?: string, firmGte?: string, firmLt?: string, firmLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, benzingaRatingId?: string, benzingaRatingIdAnyOf?: string, benzingaRatingIdGt?: string, benzingaRatingIdGte?: string, benzingaRatingIdLt?: string, benzingaRatingIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16029
16370
|
/**
|
|
16030
16371
|
* A comprehensive database of financial analysts, containing detailed performance metrics and identification information for individual analysts across various financial firms.
|
|
16031
16372
|
* @param {string} [benzingaId] The identifier used by Benzinga for this record.
|
|
@@ -16092,12 +16433,12 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16092
16433
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
16093
16434
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
16094
16435
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
16095
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system.
|
|
16096
|
-
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16097
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value.
|
|
16098
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value.
|
|
16099
|
-
* @param {string} [lastUpdatedLt] Filter less than the value.
|
|
16100
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
16436
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16437
|
+
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16438
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16439
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16440
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16441
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16101
16442
|
* @param {string} [dateStatus] Indicates whether the date of the earnings report has been confirmed. Possible values include: projected, confirmed.
|
|
16102
16443
|
* @param {string} [dateStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16103
16444
|
* @param {string} [dateStatusGt] Filter greater than the value.
|
|
@@ -16129,7 +16470,7 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16129
16470
|
* @param {string} [fiscalPeriodLt] Filter less than the value.
|
|
16130
16471
|
* @param {string} [fiscalPeriodLte] Filter less than or equal to the value.
|
|
16131
16472
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
16132
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
16473
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
16133
16474
|
* @param {*} [options] Override http request option.
|
|
16134
16475
|
* @throws {RequiredError}
|
|
16135
16476
|
*/
|
|
@@ -16252,12 +16593,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16252
16593
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
16253
16594
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
16254
16595
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
16255
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
16256
|
-
* @param {string} [
|
|
16257
|
-
* @param {string} [
|
|
16258
|
-
* @param {string} [
|
|
16259
|
-
* @param {string} [
|
|
16260
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
16596
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16597
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16598
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16599
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16600
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
16261
16601
|
* @param {string} [ratingAction] The description of the change in rating from the firm\'s last rating. Possible values include: downgrades, maintains, reinstates, reiterates, upgrades, assumes, initiates_coverage_on, terminates_coverage_on, removes, suspends, firm_dissolved.
|
|
16262
16602
|
* @param {string} [ratingActionAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16263
16603
|
* @param {string} [ratingActionGt] Filter greater than the value.
|
|
@@ -16289,11 +16629,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16289
16629
|
* @param {string} [benzingaFirmIdLt] Filter less than the value.
|
|
16290
16630
|
* @param {string} [benzingaFirmIdLte] Filter less than or equal to the value.
|
|
16291
16631
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
16292
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
16632
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
16293
16633
|
* @param {*} [options] Override http request option.
|
|
16294
16634
|
* @throws {RequiredError}
|
|
16295
16635
|
*/
|
|
16296
|
-
getBenzingaV1Ratings: (date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string,
|
|
16636
|
+
getBenzingaV1Ratings: (date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, priceTargetAction?: string, priceTargetActionAnyOf?: string, priceTargetActionGt?: string, priceTargetActionGte?: string, priceTargetActionLt?: string, priceTargetActionLte?: string, benzingaId?: string, benzingaIdAnyOf?: string, benzingaIdGt?: string, benzingaIdGte?: string, benzingaIdLt?: string, benzingaIdLte?: string, benzingaAnalystId?: string, benzingaAnalystIdAnyOf?: string, benzingaAnalystIdGt?: string, benzingaAnalystIdGte?: string, benzingaAnalystIdLt?: string, benzingaAnalystIdLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16297
16637
|
/**
|
|
16298
16638
|
* A comprehensive news article database from Benzinga, containing detailed information about financial news articles including metadata, content, and associated financial information.
|
|
16299
16639
|
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
@@ -17028,6 +17368,49 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
17028
17368
|
* @throws {RequiredError}
|
|
17029
17369
|
*/
|
|
17030
17370
|
getFuturesTrades: (ticker: string, timestamp?: string, sessionEndDate?: string, limit?: number, timestampGte?: string, timestampGt?: string, timestampLte?: string, timestampLt?: string, sessionEndDateGte?: string, sessionEndDateGt?: string, sessionEndDateLte?: string, sessionEndDateLt?: string, sort?: GetFuturesTradesSortEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17371
|
+
/**
|
|
17372
|
+
* Retrieve detailed information about a specific futures contract identified by its ticker. The response includes comprehensive attributes such as active status, trade dates, days to maturity, exchange code, order quantity limits, settlement date, tick sizes, and other key metrics. Users can specify a point-in-time (as_of) to view the contract\'s state on a particular date, supporting informed trading decisions and historical analysis. Use Cases: Contract specification, historical product checks, system integration, trading decision support.
|
|
17373
|
+
* @summary futures_contracts_v1 API
|
|
17374
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
17375
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17376
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17377
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17378
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17379
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
17380
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17381
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
17382
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
17383
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
17384
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
17385
|
+
* @param {string} [ticker] The ticker for the contract.
|
|
17386
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17387
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
17388
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
17389
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
17390
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
17391
|
+
* @param {string} [active] The contract is still trading. Value must be \'true\', \'false\', \'1\' or \'0\'.
|
|
17392
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
17393
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17394
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
17395
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
17396
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
17397
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
17398
|
+
* @param {string} [firstTradeDate] The first date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17399
|
+
* @param {string} [firstTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17400
|
+
* @param {string} [firstTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17401
|
+
* @param {string} [firstTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17402
|
+
* @param {string} [firstTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17403
|
+
* @param {string} [lastTradeDate] The last date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17404
|
+
* @param {string} [lastTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17405
|
+
* @param {string} [lastTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17406
|
+
* @param {string} [lastTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17407
|
+
* @param {string} [lastTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
17408
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'1000\'.
|
|
17409
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'product_code\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
17410
|
+
* @param {*} [options] Override http request option.
|
|
17411
|
+
* @throws {RequiredError}
|
|
17412
|
+
*/
|
|
17413
|
+
getFuturesVXContractsNew: (date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, active?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, firstTradeDate?: string, firstTradeDateGt?: string, firstTradeDateGte?: string, firstTradeDateLt?: string, firstTradeDateLte?: string, lastTradeDate?: string, lastTradeDateGt?: string, lastTradeDateGte?: string, lastTradeDateLt?: string, lastTradeDateLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17031
17414
|
/**
|
|
17032
17415
|
* US futures exchanges and trading venues including major derivatives exchanges (CME, CBOT, NYMEX, COMEX) and other futures market infrastructure for commodity, financial, and other derivative contract trading.
|
|
17033
17416
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'999\'.
|
|
@@ -17035,6 +17418,62 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
17035
17418
|
* @throws {RequiredError}
|
|
17036
17419
|
*/
|
|
17037
17420
|
getFuturesVXExchanges: (limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17421
|
+
/**
|
|
17422
|
+
* Retrieve detailed information about a single futures product as of a specified date, including its asset class, exchange code, full product name, settlement details, pricing quotation, sector classifications, and unit of measure. Optional parameters such as product type (single or combo) and as_of allow you to capture the product’s state on a specific day, providing essential context for trading decisions and system integrations. Use Cases: Product specification, historical product checks, risk management, trading system integration.
|
|
17423
|
+
* @summary futures_products_v1 API
|
|
17424
|
+
* @param {string} [name] The full name of the product.
|
|
17425
|
+
* @param {string} [nameAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17426
|
+
* @param {string} [nameGt] Filter greater than the value.
|
|
17427
|
+
* @param {string} [nameGte] Filter greater than or equal to the value.
|
|
17428
|
+
* @param {string} [nameLt] Filter less than the value.
|
|
17429
|
+
* @param {string} [nameLte] Filter less than or equal to the value.
|
|
17430
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
17431
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17432
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
17433
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
17434
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
17435
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
17436
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
17437
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17438
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17439
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17440
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
17441
|
+
* @param {string} [sector] The sector to which the product belongs.
|
|
17442
|
+
* @param {string} [sectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17443
|
+
* @param {string} [sectorGt] Filter greater than the value.
|
|
17444
|
+
* @param {string} [sectorGte] Filter greater than or equal to the value.
|
|
17445
|
+
* @param {string} [sectorLt] Filter less than the value.
|
|
17446
|
+
* @param {string} [sectorLte] Filter less than or equal to the value.
|
|
17447
|
+
* @param {string} [subSector] The sub-sector to which the product belongs.
|
|
17448
|
+
* @param {string} [subSectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17449
|
+
* @param {string} [subSectorGt] Filter greater than the value.
|
|
17450
|
+
* @param {string} [subSectorGte] Filter greater than or equal to the value.
|
|
17451
|
+
* @param {string} [subSectorLt] Filter less than the value.
|
|
17452
|
+
* @param {string} [subSectorLte] Filter less than or equal to the value.
|
|
17453
|
+
* @param {string} [assetClass] The asset class to which the product belongs.
|
|
17454
|
+
* @param {string} [assetClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17455
|
+
* @param {string} [assetClassGt] Filter greater than the value.
|
|
17456
|
+
* @param {string} [assetClassGte] Filter greater than or equal to the value.
|
|
17457
|
+
* @param {string} [assetClassLt] Filter less than the value.
|
|
17458
|
+
* @param {string} [assetClassLte] Filter less than or equal to the value.
|
|
17459
|
+
* @param {string} [assetSubClass] The asset sub-class to which the product belongs.
|
|
17460
|
+
* @param {string} [assetSubClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17461
|
+
* @param {string} [assetSubClassGt] Filter greater than the value.
|
|
17462
|
+
* @param {string} [assetSubClassGte] Filter greater than or equal to the value.
|
|
17463
|
+
* @param {string} [assetSubClassLt] Filter less than the value.
|
|
17464
|
+
* @param {string} [assetSubClassLte] Filter less than or equal to the value.
|
|
17465
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
17466
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
17467
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
17468
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
17469
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
17470
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
17471
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
17472
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'date\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
17473
|
+
* @param {*} [options] Override http request option.
|
|
17474
|
+
* @throws {RequiredError}
|
|
17475
|
+
*/
|
|
17476
|
+
getFuturesVXProductsNew: (name?: string, nameAnyOf?: string, nameGt?: string, nameGte?: string, nameLt?: string, nameLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, sector?: string, sectorAnyOf?: string, sectorGt?: string, sectorGte?: string, sectorLt?: string, sectorLte?: string, subSector?: string, subSectorAnyOf?: string, subSectorGt?: string, subSectorGte?: string, subSectorLt?: string, subSectorLte?: string, assetClass?: string, assetClassAnyOf?: string, assetClassGt?: string, assetClassGte?: string, assetClassLt?: string, assetClassLte?: string, assetSubClass?: string, assetSubClassAnyOf?: string, assetSubClassGt?: string, assetSubClassGte?: string, assetSubClassLt?: string, assetSubClassLte?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17038
17477
|
/**
|
|
17039
17478
|
* Retrieve a snapshot of the most recent futures contract data.
|
|
17040
17479
|
* @summary futures_snapshot_v1 API
|
|
@@ -18364,12 +18803,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
18364
18803
|
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
18365
18804
|
* @param {string} [tickerLt] Filter less than the value.
|
|
18366
18805
|
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
18367
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
18368
|
-
* @param {string} [
|
|
18369
|
-
* @param {string} [
|
|
18370
|
-
* @param {string} [
|
|
18371
|
-
* @param {string} [
|
|
18372
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
18806
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18807
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18808
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18809
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18810
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18373
18811
|
* @param {string} [firm] The name of the research firm or investment bank issuing the rating.
|
|
18374
18812
|
* @param {string} [firmAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18375
18813
|
* @param {string} [firmGt] Filter greater than the value.
|
|
@@ -18395,11 +18833,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
18395
18833
|
* @param {string} [benzingaRatingIdLt] Filter less than the value.
|
|
18396
18834
|
* @param {string} [benzingaRatingIdLte] Filter less than or equal to the value.
|
|
18397
18835
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
18398
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
18836
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18399
18837
|
* @param {*} [options] Override http request option.
|
|
18400
18838
|
* @throws {RequiredError}
|
|
18401
18839
|
*/
|
|
18402
|
-
getBenzingaV1AnalystInsights(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string,
|
|
18840
|
+
getBenzingaV1AnalystInsights(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, firm?: string, firmAnyOf?: string, firmGt?: string, firmGte?: string, firmLt?: string, firmLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, benzingaRatingId?: string, benzingaRatingIdAnyOf?: string, benzingaRatingIdGt?: string, benzingaRatingIdGte?: string, benzingaRatingIdLt?: string, benzingaRatingIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetBenzingaV1AnalystInsights200Response>>;
|
|
18403
18841
|
/**
|
|
18404
18842
|
* A comprehensive database of financial analysts, containing detailed performance metrics and identification information for individual analysts across various financial firms.
|
|
18405
18843
|
* @param {string} [benzingaId] The identifier used by Benzinga for this record.
|
|
@@ -18466,12 +18904,12 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
18466
18904
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
18467
18905
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
18468
18906
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
18469
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system.
|
|
18470
|
-
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18471
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value.
|
|
18472
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value.
|
|
18473
|
-
* @param {string} [lastUpdatedLt] Filter less than the value.
|
|
18474
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
18907
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18908
|
+
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18909
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18910
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18911
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18912
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18475
18913
|
* @param {string} [dateStatus] Indicates whether the date of the earnings report has been confirmed. Possible values include: projected, confirmed.
|
|
18476
18914
|
* @param {string} [dateStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18477
18915
|
* @param {string} [dateStatusGt] Filter greater than the value.
|
|
@@ -18503,7 +18941,7 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
18503
18941
|
* @param {string} [fiscalPeriodLt] Filter less than the value.
|
|
18504
18942
|
* @param {string} [fiscalPeriodLte] Filter less than or equal to the value.
|
|
18505
18943
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
18506
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
18944
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18507
18945
|
* @param {*} [options] Override http request option.
|
|
18508
18946
|
* @throws {RequiredError}
|
|
18509
18947
|
*/
|
|
@@ -18626,12 +19064,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
18626
19064
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
18627
19065
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
18628
19066
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
18629
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
18630
|
-
* @param {string} [
|
|
18631
|
-
* @param {string} [
|
|
18632
|
-
* @param {string} [
|
|
18633
|
-
* @param {string} [
|
|
18634
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
19067
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
19068
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
19069
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
19070
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
19071
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
18635
19072
|
* @param {string} [ratingAction] The description of the change in rating from the firm\'s last rating. Possible values include: downgrades, maintains, reinstates, reiterates, upgrades, assumes, initiates_coverage_on, terminates_coverage_on, removes, suspends, firm_dissolved.
|
|
18636
19073
|
* @param {string} [ratingActionAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18637
19074
|
* @param {string} [ratingActionGt] Filter greater than the value.
|
|
@@ -18663,11 +19100,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
18663
19100
|
* @param {string} [benzingaFirmIdLt] Filter less than the value.
|
|
18664
19101
|
* @param {string} [benzingaFirmIdLte] Filter less than or equal to the value.
|
|
18665
19102
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
18666
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
19103
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18667
19104
|
* @param {*} [options] Override http request option.
|
|
18668
19105
|
* @throws {RequiredError}
|
|
18669
19106
|
*/
|
|
18670
|
-
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string,
|
|
19107
|
+
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, priceTargetAction?: string, priceTargetActionAnyOf?: string, priceTargetActionGt?: string, priceTargetActionGte?: string, priceTargetActionLt?: string, priceTargetActionLte?: string, benzingaId?: string, benzingaIdAnyOf?: string, benzingaIdGt?: string, benzingaIdGte?: string, benzingaIdLt?: string, benzingaIdLte?: string, benzingaAnalystId?: string, benzingaAnalystIdAnyOf?: string, benzingaAnalystIdGt?: string, benzingaAnalystIdGte?: string, benzingaAnalystIdLt?: string, benzingaAnalystIdLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetBenzingaV1Ratings200Response>>;
|
|
18671
19108
|
/**
|
|
18672
19109
|
* A comprehensive news article database from Benzinga, containing detailed information about financial news articles including metadata, content, and associated financial information.
|
|
18673
19110
|
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
@@ -19402,6 +19839,49 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19402
19839
|
* @throws {RequiredError}
|
|
19403
19840
|
*/
|
|
19404
19841
|
getFuturesTrades(ticker: string, timestamp?: string, sessionEndDate?: string, limit?: number, timestampGte?: string, timestampGt?: string, timestampLte?: string, timestampLt?: string, sessionEndDateGte?: string, sessionEndDateGt?: string, sessionEndDateLte?: string, sessionEndDateLt?: string, sort?: GetFuturesTradesSortEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesTrades200Response>>;
|
|
19842
|
+
/**
|
|
19843
|
+
* Retrieve detailed information about a specific futures contract identified by its ticker. The response includes comprehensive attributes such as active status, trade dates, days to maturity, exchange code, order quantity limits, settlement date, tick sizes, and other key metrics. Users can specify a point-in-time (as_of) to view the contract\'s state on a particular date, supporting informed trading decisions and historical analysis. Use Cases: Contract specification, historical product checks, system integration, trading decision support.
|
|
19844
|
+
* @summary futures_contracts_v1 API
|
|
19845
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
19846
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19847
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19848
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19849
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19850
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
19851
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19852
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
19853
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
19854
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
19855
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
19856
|
+
* @param {string} [ticker] The ticker for the contract.
|
|
19857
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19858
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
19859
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
19860
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
19861
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
19862
|
+
* @param {string} [active] The contract is still trading. Value must be \'true\', \'false\', \'1\' or \'0\'.
|
|
19863
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
19864
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19865
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
19866
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
19867
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
19868
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
19869
|
+
* @param {string} [firstTradeDate] The first date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19870
|
+
* @param {string} [firstTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19871
|
+
* @param {string} [firstTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19872
|
+
* @param {string} [firstTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19873
|
+
* @param {string} [firstTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19874
|
+
* @param {string} [lastTradeDate] The last date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19875
|
+
* @param {string} [lastTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19876
|
+
* @param {string} [lastTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19877
|
+
* @param {string} [lastTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19878
|
+
* @param {string} [lastTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
19879
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'1000\'.
|
|
19880
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'product_code\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
19881
|
+
* @param {*} [options] Override http request option.
|
|
19882
|
+
* @throws {RequiredError}
|
|
19883
|
+
*/
|
|
19884
|
+
getFuturesVXContractsNew(date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, active?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, firstTradeDate?: string, firstTradeDateGt?: string, firstTradeDateGte?: string, firstTradeDateLt?: string, firstTradeDateLte?: string, lastTradeDate?: string, lastTradeDateGt?: string, lastTradeDateGte?: string, lastTradeDateLt?: string, lastTradeDateLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXContractsNew200Response>>;
|
|
19405
19885
|
/**
|
|
19406
19886
|
* US futures exchanges and trading venues including major derivatives exchanges (CME, CBOT, NYMEX, COMEX) and other futures market infrastructure for commodity, financial, and other derivative contract trading.
|
|
19407
19887
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'999\'.
|
|
@@ -19409,6 +19889,62 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19409
19889
|
* @throws {RequiredError}
|
|
19410
19890
|
*/
|
|
19411
19891
|
getFuturesVXExchanges(limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXExchanges200Response>>;
|
|
19892
|
+
/**
|
|
19893
|
+
* Retrieve detailed information about a single futures product as of a specified date, including its asset class, exchange code, full product name, settlement details, pricing quotation, sector classifications, and unit of measure. Optional parameters such as product type (single or combo) and as_of allow you to capture the product’s state on a specific day, providing essential context for trading decisions and system integrations. Use Cases: Product specification, historical product checks, risk management, trading system integration.
|
|
19894
|
+
* @summary futures_products_v1 API
|
|
19895
|
+
* @param {string} [name] The full name of the product.
|
|
19896
|
+
* @param {string} [nameAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19897
|
+
* @param {string} [nameGt] Filter greater than the value.
|
|
19898
|
+
* @param {string} [nameGte] Filter greater than or equal to the value.
|
|
19899
|
+
* @param {string} [nameLt] Filter less than the value.
|
|
19900
|
+
* @param {string} [nameLte] Filter less than or equal to the value.
|
|
19901
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
19902
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19903
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
19904
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
19905
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
19906
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
19907
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
19908
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19909
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19910
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19911
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
19912
|
+
* @param {string} [sector] The sector to which the product belongs.
|
|
19913
|
+
* @param {string} [sectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19914
|
+
* @param {string} [sectorGt] Filter greater than the value.
|
|
19915
|
+
* @param {string} [sectorGte] Filter greater than or equal to the value.
|
|
19916
|
+
* @param {string} [sectorLt] Filter less than the value.
|
|
19917
|
+
* @param {string} [sectorLte] Filter less than or equal to the value.
|
|
19918
|
+
* @param {string} [subSector] The sub-sector to which the product belongs.
|
|
19919
|
+
* @param {string} [subSectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19920
|
+
* @param {string} [subSectorGt] Filter greater than the value.
|
|
19921
|
+
* @param {string} [subSectorGte] Filter greater than or equal to the value.
|
|
19922
|
+
* @param {string} [subSectorLt] Filter less than the value.
|
|
19923
|
+
* @param {string} [subSectorLte] Filter less than or equal to the value.
|
|
19924
|
+
* @param {string} [assetClass] The asset class to which the product belongs.
|
|
19925
|
+
* @param {string} [assetClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19926
|
+
* @param {string} [assetClassGt] Filter greater than the value.
|
|
19927
|
+
* @param {string} [assetClassGte] Filter greater than or equal to the value.
|
|
19928
|
+
* @param {string} [assetClassLt] Filter less than the value.
|
|
19929
|
+
* @param {string} [assetClassLte] Filter less than or equal to the value.
|
|
19930
|
+
* @param {string} [assetSubClass] The asset sub-class to which the product belongs.
|
|
19931
|
+
* @param {string} [assetSubClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19932
|
+
* @param {string} [assetSubClassGt] Filter greater than the value.
|
|
19933
|
+
* @param {string} [assetSubClassGte] Filter greater than or equal to the value.
|
|
19934
|
+
* @param {string} [assetSubClassLt] Filter less than the value.
|
|
19935
|
+
* @param {string} [assetSubClassLte] Filter less than or equal to the value.
|
|
19936
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
19937
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19938
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
19939
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
19940
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
19941
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
19942
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
19943
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'date\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
19944
|
+
* @param {*} [options] Override http request option.
|
|
19945
|
+
* @throws {RequiredError}
|
|
19946
|
+
*/
|
|
19947
|
+
getFuturesVXProductsNew(name?: string, nameAnyOf?: string, nameGt?: string, nameGte?: string, nameLt?: string, nameLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, sector?: string, sectorAnyOf?: string, sectorGt?: string, sectorGte?: string, sectorLt?: string, sectorLte?: string, subSector?: string, subSectorAnyOf?: string, subSectorGt?: string, subSectorGte?: string, subSectorLt?: string, subSectorLte?: string, assetClass?: string, assetClassAnyOf?: string, assetClassGt?: string, assetClassGte?: string, assetClassLt?: string, assetClassLte?: string, assetSubClass?: string, assetSubClassAnyOf?: string, assetSubClassGt?: string, assetSubClassGte?: string, assetSubClassLt?: string, assetSubClassLte?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXProductsNew200Response>>;
|
|
19412
19948
|
/**
|
|
19413
19949
|
* Retrieve a snapshot of the most recent futures contract data.
|
|
19414
19950
|
* @summary futures_snapshot_v1 API
|
|
@@ -20738,12 +21274,11 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
20738
21274
|
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
20739
21275
|
* @param {string} [tickerLt] Filter less than the value.
|
|
20740
21276
|
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
20741
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
20742
|
-
* @param {string} [
|
|
20743
|
-
* @param {string} [
|
|
20744
|
-
* @param {string} [
|
|
20745
|
-
* @param {string} [
|
|
20746
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
21277
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21278
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21279
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21280
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21281
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
20747
21282
|
* @param {string} [firm] The name of the research firm or investment bank issuing the rating.
|
|
20748
21283
|
* @param {string} [firmAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
20749
21284
|
* @param {string} [firmGt] Filter greater than the value.
|
|
@@ -20769,11 +21304,11 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
20769
21304
|
* @param {string} [benzingaRatingIdLt] Filter less than the value.
|
|
20770
21305
|
* @param {string} [benzingaRatingIdLte] Filter less than or equal to the value.
|
|
20771
21306
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
20772
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
21307
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
20773
21308
|
* @param {*} [options] Override http request option.
|
|
20774
21309
|
* @throws {RequiredError}
|
|
20775
21310
|
*/
|
|
20776
|
-
getBenzingaV1AnalystInsights(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string,
|
|
21311
|
+
getBenzingaV1AnalystInsights(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, firm?: string, firmAnyOf?: string, firmGt?: string, firmGte?: string, firmLt?: string, firmLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, benzingaRatingId?: string, benzingaRatingIdAnyOf?: string, benzingaRatingIdGt?: string, benzingaRatingIdGte?: string, benzingaRatingIdLt?: string, benzingaRatingIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetBenzingaV1AnalystInsights200Response>;
|
|
20777
21312
|
/**
|
|
20778
21313
|
* A comprehensive database of financial analysts, containing detailed performance metrics and identification information for individual analysts across various financial firms.
|
|
20779
21314
|
* @param {string} [benzingaId] The identifier used by Benzinga for this record.
|
|
@@ -20840,12 +21375,12 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
20840
21375
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
20841
21376
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
20842
21377
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
20843
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system.
|
|
20844
|
-
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
20845
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value.
|
|
20846
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value.
|
|
20847
|
-
* @param {string} [lastUpdatedLt] Filter less than the value.
|
|
20848
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
21378
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21379
|
+
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21380
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21381
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21382
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21383
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
20849
21384
|
* @param {string} [dateStatus] Indicates whether the date of the earnings report has been confirmed. Possible values include: projected, confirmed.
|
|
20850
21385
|
* @param {string} [dateStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
20851
21386
|
* @param {string} [dateStatusGt] Filter greater than the value.
|
|
@@ -20877,7 +21412,7 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
20877
21412
|
* @param {string} [fiscalPeriodLt] Filter less than the value.
|
|
20878
21413
|
* @param {string} [fiscalPeriodLte] Filter less than or equal to the value.
|
|
20879
21414
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
20880
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
21415
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
20881
21416
|
* @param {*} [options] Override http request option.
|
|
20882
21417
|
* @throws {RequiredError}
|
|
20883
21418
|
*/
|
|
@@ -21000,12 +21535,11 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
21000
21535
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
21001
21536
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
21002
21537
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
21003
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
21004
|
-
* @param {string} [
|
|
21005
|
-
* @param {string} [
|
|
21006
|
-
* @param {string} [
|
|
21007
|
-
* @param {string} [
|
|
21008
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
21538
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21539
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21540
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21541
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21542
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
21009
21543
|
* @param {string} [ratingAction] The description of the change in rating from the firm\'s last rating. Possible values include: downgrades, maintains, reinstates, reiterates, upgrades, assumes, initiates_coverage_on, terminates_coverage_on, removes, suspends, firm_dissolved.
|
|
21010
21544
|
* @param {string} [ratingActionAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
21011
21545
|
* @param {string} [ratingActionGt] Filter greater than the value.
|
|
@@ -21037,11 +21571,11 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
21037
21571
|
* @param {string} [benzingaFirmIdLt] Filter less than the value.
|
|
21038
21572
|
* @param {string} [benzingaFirmIdLte] Filter less than or equal to the value.
|
|
21039
21573
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
21040
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
21574
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
21041
21575
|
* @param {*} [options] Override http request option.
|
|
21042
21576
|
* @throws {RequiredError}
|
|
21043
21577
|
*/
|
|
21044
|
-
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string,
|
|
21578
|
+
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, priceTargetAction?: string, priceTargetActionAnyOf?: string, priceTargetActionGt?: string, priceTargetActionGte?: string, priceTargetActionLt?: string, priceTargetActionLte?: string, benzingaId?: string, benzingaIdAnyOf?: string, benzingaIdGt?: string, benzingaIdGte?: string, benzingaIdLt?: string, benzingaIdLte?: string, benzingaAnalystId?: string, benzingaAnalystIdAnyOf?: string, benzingaAnalystIdGt?: string, benzingaAnalystIdGte?: string, benzingaAnalystIdLt?: string, benzingaAnalystIdLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetBenzingaV1Ratings200Response>;
|
|
21045
21579
|
/**
|
|
21046
21580
|
* A comprehensive news article database from Benzinga, containing detailed information about financial news articles including metadata, content, and associated financial information.
|
|
21047
21581
|
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
@@ -21776,6 +22310,49 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
21776
22310
|
* @throws {RequiredError}
|
|
21777
22311
|
*/
|
|
21778
22312
|
getFuturesTrades(ticker: string, timestamp?: string, sessionEndDate?: string, limit?: number, timestampGte?: string, timestampGt?: string, timestampLte?: string, timestampLt?: string, sessionEndDateGte?: string, sessionEndDateGt?: string, sessionEndDateLte?: string, sessionEndDateLt?: string, sort?: GetFuturesTradesSortEnum, options?: RawAxiosRequestConfig): Promise<GetFuturesTrades200Response>;
|
|
22313
|
+
/**
|
|
22314
|
+
* Retrieve detailed information about a specific futures contract identified by its ticker. The response includes comprehensive attributes such as active status, trade dates, days to maturity, exchange code, order quantity limits, settlement date, tick sizes, and other key metrics. Users can specify a point-in-time (as_of) to view the contract\'s state on a particular date, supporting informed trading decisions and historical analysis. Use Cases: Contract specification, historical product checks, system integration, trading decision support.
|
|
22315
|
+
* @summary futures_contracts_v1 API
|
|
22316
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
22317
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22318
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22319
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22320
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22321
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
22322
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22323
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
22324
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
22325
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
22326
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
22327
|
+
* @param {string} [ticker] The ticker for the contract.
|
|
22328
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22329
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
22330
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
22331
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
22332
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
22333
|
+
* @param {string} [active] The contract is still trading. Value must be \'true\', \'false\', \'1\' or \'0\'.
|
|
22334
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
22335
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22336
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
22337
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
22338
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
22339
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
22340
|
+
* @param {string} [firstTradeDate] The first date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22341
|
+
* @param {string} [firstTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22342
|
+
* @param {string} [firstTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22343
|
+
* @param {string} [firstTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22344
|
+
* @param {string} [firstTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22345
|
+
* @param {string} [lastTradeDate] The last date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22346
|
+
* @param {string} [lastTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22347
|
+
* @param {string} [lastTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22348
|
+
* @param {string} [lastTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22349
|
+
* @param {string} [lastTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
22350
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'1000\'.
|
|
22351
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'product_code\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
22352
|
+
* @param {*} [options] Override http request option.
|
|
22353
|
+
* @throws {RequiredError}
|
|
22354
|
+
*/
|
|
22355
|
+
getFuturesVXContractsNew(date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, active?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, firstTradeDate?: string, firstTradeDateGt?: string, firstTradeDateGte?: string, firstTradeDateLt?: string, firstTradeDateLte?: string, lastTradeDate?: string, lastTradeDateGt?: string, lastTradeDateGte?: string, lastTradeDateLt?: string, lastTradeDateLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetFuturesVXContractsNew200Response>;
|
|
21779
22356
|
/**
|
|
21780
22357
|
* US futures exchanges and trading venues including major derivatives exchanges (CME, CBOT, NYMEX, COMEX) and other futures market infrastructure for commodity, financial, and other derivative contract trading.
|
|
21781
22358
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'999\'.
|
|
@@ -21783,6 +22360,62 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
21783
22360
|
* @throws {RequiredError}
|
|
21784
22361
|
*/
|
|
21785
22362
|
getFuturesVXExchanges(limit?: number, options?: RawAxiosRequestConfig): Promise<GetFuturesVXExchanges200Response>;
|
|
22363
|
+
/**
|
|
22364
|
+
* Retrieve detailed information about a single futures product as of a specified date, including its asset class, exchange code, full product name, settlement details, pricing quotation, sector classifications, and unit of measure. Optional parameters such as product type (single or combo) and as_of allow you to capture the product’s state on a specific day, providing essential context for trading decisions and system integrations. Use Cases: Product specification, historical product checks, risk management, trading system integration.
|
|
22365
|
+
* @summary futures_products_v1 API
|
|
22366
|
+
* @param {string} [name] The full name of the product.
|
|
22367
|
+
* @param {string} [nameAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22368
|
+
* @param {string} [nameGt] Filter greater than the value.
|
|
22369
|
+
* @param {string} [nameGte] Filter greater than or equal to the value.
|
|
22370
|
+
* @param {string} [nameLt] Filter less than the value.
|
|
22371
|
+
* @param {string} [nameLte] Filter less than or equal to the value.
|
|
22372
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
22373
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22374
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
22375
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
22376
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
22377
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
22378
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
22379
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22380
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22381
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22382
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
22383
|
+
* @param {string} [sector] The sector to which the product belongs.
|
|
22384
|
+
* @param {string} [sectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22385
|
+
* @param {string} [sectorGt] Filter greater than the value.
|
|
22386
|
+
* @param {string} [sectorGte] Filter greater than or equal to the value.
|
|
22387
|
+
* @param {string} [sectorLt] Filter less than the value.
|
|
22388
|
+
* @param {string} [sectorLte] Filter less than or equal to the value.
|
|
22389
|
+
* @param {string} [subSector] The sub-sector to which the product belongs.
|
|
22390
|
+
* @param {string} [subSectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22391
|
+
* @param {string} [subSectorGt] Filter greater than the value.
|
|
22392
|
+
* @param {string} [subSectorGte] Filter greater than or equal to the value.
|
|
22393
|
+
* @param {string} [subSectorLt] Filter less than the value.
|
|
22394
|
+
* @param {string} [subSectorLte] Filter less than or equal to the value.
|
|
22395
|
+
* @param {string} [assetClass] The asset class to which the product belongs.
|
|
22396
|
+
* @param {string} [assetClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22397
|
+
* @param {string} [assetClassGt] Filter greater than the value.
|
|
22398
|
+
* @param {string} [assetClassGte] Filter greater than or equal to the value.
|
|
22399
|
+
* @param {string} [assetClassLt] Filter less than the value.
|
|
22400
|
+
* @param {string} [assetClassLte] Filter less than or equal to the value.
|
|
22401
|
+
* @param {string} [assetSubClass] The asset sub-class to which the product belongs.
|
|
22402
|
+
* @param {string} [assetSubClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22403
|
+
* @param {string} [assetSubClassGt] Filter greater than the value.
|
|
22404
|
+
* @param {string} [assetSubClassGte] Filter greater than or equal to the value.
|
|
22405
|
+
* @param {string} [assetSubClassLt] Filter less than the value.
|
|
22406
|
+
* @param {string} [assetSubClassLte] Filter less than or equal to the value.
|
|
22407
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
22408
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22409
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
22410
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
22411
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
22412
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
22413
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
22414
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'date\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
22415
|
+
* @param {*} [options] Override http request option.
|
|
22416
|
+
* @throws {RequiredError}
|
|
22417
|
+
*/
|
|
22418
|
+
getFuturesVXProductsNew(name?: string, nameAnyOf?: string, nameGt?: string, nameGte?: string, nameLt?: string, nameLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, sector?: string, sectorAnyOf?: string, sectorGt?: string, sectorGte?: string, sectorLt?: string, sectorLte?: string, subSector?: string, subSectorAnyOf?: string, subSectorGt?: string, subSectorGte?: string, subSectorLt?: string, subSectorLte?: string, assetClass?: string, assetClassAnyOf?: string, assetClassGt?: string, assetClassGte?: string, assetClassLt?: string, assetClassLte?: string, assetSubClass?: string, assetSubClassAnyOf?: string, assetSubClassGt?: string, assetSubClassGte?: string, assetSubClassLt?: string, assetSubClassLte?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetFuturesVXProductsNew200Response>;
|
|
21786
22419
|
/**
|
|
21787
22420
|
* Retrieve a snapshot of the most recent futures contract data.
|
|
21788
22421
|
* @summary futures_snapshot_v1 API
|
|
@@ -23119,12 +23752,11 @@ declare class DefaultApi extends BaseAPI {
|
|
|
23119
23752
|
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
23120
23753
|
* @param {string} [tickerLt] Filter less than the value.
|
|
23121
23754
|
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
23122
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
23123
|
-
* @param {string} [
|
|
23124
|
-
* @param {string} [
|
|
23125
|
-
* @param {string} [
|
|
23126
|
-
* @param {string} [
|
|
23127
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
23755
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23756
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23757
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23758
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23759
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23128
23760
|
* @param {string} [firm] The name of the research firm or investment bank issuing the rating.
|
|
23129
23761
|
* @param {string} [firmAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
23130
23762
|
* @param {string} [firmGt] Filter greater than the value.
|
|
@@ -23150,12 +23782,12 @@ declare class DefaultApi extends BaseAPI {
|
|
|
23150
23782
|
* @param {string} [benzingaRatingIdLt] Filter less than the value.
|
|
23151
23783
|
* @param {string} [benzingaRatingIdLte] Filter less than or equal to the value.
|
|
23152
23784
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
23153
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
23785
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
23154
23786
|
* @param {*} [options] Override http request option.
|
|
23155
23787
|
* @throws {RequiredError}
|
|
23156
23788
|
* @memberof DefaultApi
|
|
23157
23789
|
*/
|
|
23158
|
-
getBenzingaV1AnalystInsights(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string,
|
|
23790
|
+
getBenzingaV1AnalystInsights(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, firm?: string, firmAnyOf?: string, firmGt?: string, firmGte?: string, firmLt?: string, firmLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, benzingaRatingId?: string, benzingaRatingIdAnyOf?: string, benzingaRatingIdGt?: string, benzingaRatingIdGte?: string, benzingaRatingIdLt?: string, benzingaRatingIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetBenzingaV1AnalystInsights200Response>;
|
|
23159
23791
|
/**
|
|
23160
23792
|
* A comprehensive database of financial analysts, containing detailed performance metrics and identification information for individual analysts across various financial firms.
|
|
23161
23793
|
* @param {string} [benzingaId] The identifier used by Benzinga for this record.
|
|
@@ -23224,12 +23856,12 @@ declare class DefaultApi extends BaseAPI {
|
|
|
23224
23856
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
23225
23857
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
23226
23858
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
23227
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system.
|
|
23228
|
-
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
23229
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value.
|
|
23230
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value.
|
|
23231
|
-
* @param {string} [lastUpdatedLt] Filter less than the value.
|
|
23232
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
23859
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23860
|
+
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23861
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23862
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23863
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23864
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23233
23865
|
* @param {string} [dateStatus] Indicates whether the date of the earnings report has been confirmed. Possible values include: projected, confirmed.
|
|
23234
23866
|
* @param {string} [dateStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
23235
23867
|
* @param {string} [dateStatusGt] Filter greater than the value.
|
|
@@ -23261,7 +23893,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
23261
23893
|
* @param {string} [fiscalPeriodLt] Filter less than the value.
|
|
23262
23894
|
* @param {string} [fiscalPeriodLte] Filter less than or equal to the value.
|
|
23263
23895
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
23264
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
23896
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
23265
23897
|
* @param {*} [options] Override http request option.
|
|
23266
23898
|
* @throws {RequiredError}
|
|
23267
23899
|
* @memberof DefaultApi
|
|
@@ -23388,12 +24020,11 @@ declare class DefaultApi extends BaseAPI {
|
|
|
23388
24020
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
23389
24021
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
23390
24022
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
23391
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system.
|
|
23392
|
-
* @param {string} [
|
|
23393
|
-
* @param {string} [
|
|
23394
|
-
* @param {string} [
|
|
23395
|
-
* @param {string} [
|
|
23396
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value.
|
|
24023
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
24024
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
24025
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
24026
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
24027
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
23397
24028
|
* @param {string} [ratingAction] The description of the change in rating from the firm\'s last rating. Possible values include: downgrades, maintains, reinstates, reiterates, upgrades, assumes, initiates_coverage_on, terminates_coverage_on, removes, suspends, firm_dissolved.
|
|
23398
24029
|
* @param {string} [ratingActionAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
23399
24030
|
* @param {string} [ratingActionGt] Filter greater than the value.
|
|
@@ -23425,12 +24056,12 @@ declare class DefaultApi extends BaseAPI {
|
|
|
23425
24056
|
* @param {string} [benzingaFirmIdLt] Filter less than the value.
|
|
23426
24057
|
* @param {string} [benzingaFirmIdLte] Filter less than or equal to the value.
|
|
23427
24058
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
23428
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
24059
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'last_updated\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
23429
24060
|
* @param {*} [options] Override http request option.
|
|
23430
24061
|
* @throws {RequiredError}
|
|
23431
24062
|
* @memberof DefaultApi
|
|
23432
24063
|
*/
|
|
23433
|
-
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string,
|
|
24064
|
+
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, priceTargetAction?: string, priceTargetActionAnyOf?: string, priceTargetActionGt?: string, priceTargetActionGte?: string, priceTargetActionLt?: string, priceTargetActionLte?: string, benzingaId?: string, benzingaIdAnyOf?: string, benzingaIdGt?: string, benzingaIdGte?: string, benzingaIdLt?: string, benzingaIdLte?: string, benzingaAnalystId?: string, benzingaAnalystIdAnyOf?: string, benzingaAnalystIdGt?: string, benzingaAnalystIdGte?: string, benzingaAnalystIdLt?: string, benzingaAnalystIdLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetBenzingaV1Ratings200Response>;
|
|
23434
24065
|
/**
|
|
23435
24066
|
* A comprehensive news article database from Benzinga, containing detailed information about financial news articles including metadata, content, and associated financial information.
|
|
23436
24067
|
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds or formatted \'yyyy-mm-dd\'.
|
|
@@ -24207,6 +24838,50 @@ declare class DefaultApi extends BaseAPI {
|
|
|
24207
24838
|
* @memberof DefaultApi
|
|
24208
24839
|
*/
|
|
24209
24840
|
getFuturesTrades(ticker: string, timestamp?: string, sessionEndDate?: string, limit?: number, timestampGte?: string, timestampGt?: string, timestampLte?: string, timestampLt?: string, sessionEndDateGte?: string, sessionEndDateGt?: string, sessionEndDateLte?: string, sessionEndDateLt?: string, sort?: GetFuturesTradesSortEnum, options?: RawAxiosRequestConfig): Promise<GetFuturesTrades200Response>;
|
|
24841
|
+
/**
|
|
24842
|
+
* Retrieve detailed information about a specific futures contract identified by its ticker. The response includes comprehensive attributes such as active status, trade dates, days to maturity, exchange code, order quantity limits, settlement date, tick sizes, and other key metrics. Users can specify a point-in-time (as_of) to view the contract\'s state on a particular date, supporting informed trading decisions and historical analysis. Use Cases: Contract specification, historical product checks, system integration, trading decision support.
|
|
24843
|
+
* @summary futures_contracts_v1 API
|
|
24844
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
24845
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24846
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24847
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24848
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24849
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
24850
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24851
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
24852
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
24853
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
24854
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
24855
|
+
* @param {string} [ticker] The ticker for the contract.
|
|
24856
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24857
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
24858
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
24859
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
24860
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
24861
|
+
* @param {string} [active] The contract is still trading. Value must be \'true\', \'false\', \'1\' or \'0\'.
|
|
24862
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
24863
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24864
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
24865
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
24866
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
24867
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
24868
|
+
* @param {string} [firstTradeDate] The first date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24869
|
+
* @param {string} [firstTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24870
|
+
* @param {string} [firstTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24871
|
+
* @param {string} [firstTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24872
|
+
* @param {string} [firstTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24873
|
+
* @param {string} [lastTradeDate] The last date the contract trades. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24874
|
+
* @param {string} [lastTradeDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24875
|
+
* @param {string} [lastTradeDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24876
|
+
* @param {string} [lastTradeDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24877
|
+
* @param {string} [lastTradeDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds or formatted \'yyyy-mm-dd\'.
|
|
24878
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'1000\'.
|
|
24879
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'product_code\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
24880
|
+
* @param {*} [options] Override http request option.
|
|
24881
|
+
* @throws {RequiredError}
|
|
24882
|
+
* @memberof DefaultApi
|
|
24883
|
+
*/
|
|
24884
|
+
getFuturesVXContractsNew(date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, active?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, firstTradeDate?: string, firstTradeDateGt?: string, firstTradeDateGte?: string, firstTradeDateLt?: string, firstTradeDateLte?: string, lastTradeDate?: string, lastTradeDateGt?: string, lastTradeDateGte?: string, lastTradeDateLt?: string, lastTradeDateLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetFuturesVXContractsNew200Response>;
|
|
24210
24885
|
/**
|
|
24211
24886
|
* US futures exchanges and trading venues including major derivatives exchanges (CME, CBOT, NYMEX, COMEX) and other futures market infrastructure for commodity, financial, and other derivative contract trading.
|
|
24212
24887
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'999\'.
|
|
@@ -24215,6 +24890,63 @@ declare class DefaultApi extends BaseAPI {
|
|
|
24215
24890
|
* @memberof DefaultApi
|
|
24216
24891
|
*/
|
|
24217
24892
|
getFuturesVXExchanges(limit?: number, options?: RawAxiosRequestConfig): Promise<GetFuturesVXExchanges200Response>;
|
|
24893
|
+
/**
|
|
24894
|
+
* Retrieve detailed information about a single futures product as of a specified date, including its asset class, exchange code, full product name, settlement details, pricing quotation, sector classifications, and unit of measure. Optional parameters such as product type (single or combo) and as_of allow you to capture the product’s state on a specific day, providing essential context for trading decisions and system integrations. Use Cases: Product specification, historical product checks, risk management, trading system integration.
|
|
24895
|
+
* @summary futures_products_v1 API
|
|
24896
|
+
* @param {string} [name] The full name of the product.
|
|
24897
|
+
* @param {string} [nameAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24898
|
+
* @param {string} [nameGt] Filter greater than the value.
|
|
24899
|
+
* @param {string} [nameGte] Filter greater than or equal to the value.
|
|
24900
|
+
* @param {string} [nameLt] Filter less than the value.
|
|
24901
|
+
* @param {string} [nameLte] Filter less than or equal to the value.
|
|
24902
|
+
* @param {string} [productCode] The unique identifier for the product.
|
|
24903
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24904
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
24905
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
24906
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
24907
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
24908
|
+
* @param {string} [date] A date string in the format YYYY-MM-DD. This parameter will return point-in-time information about products for the specified day (default=today). Value must be formatted \'yyyy-mm-dd\'.
|
|
24909
|
+
* @param {string} [dateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24910
|
+
* @param {string} [dateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24911
|
+
* @param {string} [dateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24912
|
+
* @param {string} [dateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
24913
|
+
* @param {string} [sector] The sector to which the product belongs.
|
|
24914
|
+
* @param {string} [sectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24915
|
+
* @param {string} [sectorGt] Filter greater than the value.
|
|
24916
|
+
* @param {string} [sectorGte] Filter greater than or equal to the value.
|
|
24917
|
+
* @param {string} [sectorLt] Filter less than the value.
|
|
24918
|
+
* @param {string} [sectorLte] Filter less than or equal to the value.
|
|
24919
|
+
* @param {string} [subSector] The sub-sector to which the product belongs.
|
|
24920
|
+
* @param {string} [subSectorAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24921
|
+
* @param {string} [subSectorGt] Filter greater than the value.
|
|
24922
|
+
* @param {string} [subSectorGte] Filter greater than or equal to the value.
|
|
24923
|
+
* @param {string} [subSectorLt] Filter less than the value.
|
|
24924
|
+
* @param {string} [subSectorLte] Filter less than or equal to the value.
|
|
24925
|
+
* @param {string} [assetClass] The asset class to which the product belongs.
|
|
24926
|
+
* @param {string} [assetClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24927
|
+
* @param {string} [assetClassGt] Filter greater than the value.
|
|
24928
|
+
* @param {string} [assetClassGte] Filter greater than or equal to the value.
|
|
24929
|
+
* @param {string} [assetClassLt] Filter less than the value.
|
|
24930
|
+
* @param {string} [assetClassLte] Filter less than or equal to the value.
|
|
24931
|
+
* @param {string} [assetSubClass] The asset sub-class to which the product belongs.
|
|
24932
|
+
* @param {string} [assetSubClassAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24933
|
+
* @param {string} [assetSubClassGt] Filter greater than the value.
|
|
24934
|
+
* @param {string} [assetSubClassGte] Filter greater than or equal to the value.
|
|
24935
|
+
* @param {string} [assetSubClassLt] Filter less than the value.
|
|
24936
|
+
* @param {string} [assetSubClassLte] Filter less than or equal to the value.
|
|
24937
|
+
* @param {string} [type] The type of product, one of \'single\' or \'combo\'.
|
|
24938
|
+
* @param {string} [typeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
24939
|
+
* @param {string} [typeGt] Filter greater than the value.
|
|
24940
|
+
* @param {string} [typeGte] Filter greater than or equal to the value.
|
|
24941
|
+
* @param {string} [typeLt] Filter less than the value.
|
|
24942
|
+
* @param {string} [typeLte] Filter less than or equal to the value.
|
|
24943
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
24944
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'date\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
24945
|
+
* @param {*} [options] Override http request option.
|
|
24946
|
+
* @throws {RequiredError}
|
|
24947
|
+
* @memberof DefaultApi
|
|
24948
|
+
*/
|
|
24949
|
+
getFuturesVXProductsNew(name?: string, nameAnyOf?: string, nameGt?: string, nameGte?: string, nameLt?: string, nameLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, sector?: string, sectorAnyOf?: string, sectorGt?: string, sectorGte?: string, sectorLt?: string, sectorLte?: string, subSector?: string, subSectorAnyOf?: string, subSectorGt?: string, subSectorGte?: string, subSectorLt?: string, subSectorLte?: string, assetClass?: string, assetClassAnyOf?: string, assetClassGt?: string, assetClassGte?: string, assetClassLt?: string, assetClassLte?: string, assetSubClass?: string, assetSubClassAnyOf?: string, assetSubClassGt?: string, assetSubClassGte?: string, assetSubClassLt?: string, assetSubClassLte?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<GetFuturesVXProductsNew200Response>;
|
|
24218
24950
|
/**
|
|
24219
24951
|
* Retrieve a snapshot of the most recent futures contract data.
|
|
24220
24952
|
* @summary futures_snapshot_v1 API
|
|
@@ -27084,6 +27816,18 @@ interface ILULDStockEvent {
|
|
|
27084
27816
|
t: number;
|
|
27085
27817
|
q: number;
|
|
27086
27818
|
}
|
|
27819
|
+
interface INOIStockEvent {
|
|
27820
|
+
ev: string;
|
|
27821
|
+
T: string;
|
|
27822
|
+
t: number;
|
|
27823
|
+
at: number;
|
|
27824
|
+
a: string;
|
|
27825
|
+
i: number;
|
|
27826
|
+
x: string;
|
|
27827
|
+
o: number;
|
|
27828
|
+
p: number;
|
|
27829
|
+
b: number;
|
|
27830
|
+
}
|
|
27087
27831
|
interface IFMVStockEvent {
|
|
27088
27832
|
ev: string;
|
|
27089
27833
|
fmv: string;
|
|
@@ -27223,15 +27967,15 @@ interface IWebsocketClient {
|
|
|
27223
27967
|
}
|
|
27224
27968
|
declare const websocketClient: (apiKey: string, apiBase?: string, exchange?: string) => IWebsocketClient;
|
|
27225
27969
|
|
|
27226
|
-
interface
|
|
27970
|
+
interface IMassiveClient {
|
|
27227
27971
|
rest: DefaultApi;
|
|
27228
27972
|
websockets: IWebsocketClient;
|
|
27229
27973
|
}
|
|
27230
27974
|
declare const restClient: (apikey: string, restApiBase?: string, globalFetchOptions?: {
|
|
27231
27975
|
pagination?: boolean;
|
|
27232
27976
|
}) => DefaultApi;
|
|
27233
|
-
declare const
|
|
27977
|
+
declare const MassiveClient: (apiKey: string, restApiBase?: string, websocketApiBase?: string, globalFetchOptions?: {
|
|
27234
27978
|
pagination: boolean;
|
|
27235
|
-
}) =>
|
|
27979
|
+
}) => IMassiveClient;
|
|
27236
27980
|
|
|
27237
|
-
export { type Company, type ConditionTypeMap, Configuration, type ConfigurationParameters, type CryptoExchangeInner, type CryptoGroupedResults, type CryptoHistoricTrades, type CryptoLastTrade, type CryptoLastTradeLast, type CryptoOpenClose, type CryptoSnapshotMinute, type CryptoSnapshotTicker, type CryptoSnapshotTickerFullBook, type CryptoSnapshotTickers, type CryptoTick, DefaultApi, DefaultApiAxiosParamCreator, DefaultApiFactory, DefaultApiFp, type DeprecatedGetCryptoSnapshotTickerBook200Response, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfData, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfDataAsksInner, type DeprecatedGetHistoricCryptoTrades200Response, type DeprecatedGetHistoricCryptoTrades200ResponseAllOfTicksInner, type DeprecatedGetHistoricForexQuotes200Response, type DeprecatedGetHistoricForexQuotes200ResponseAllOfTicksInner, type DeprecatedGetHistoricStocksQuotes200Response, type DeprecatedGetHistoricStocksQuotes200ResponseAllOfResultsInner, type DeprecatedGetHistoricStocksTrades200Response, type DeprecatedGetHistoricStocksTrades200ResponseAllOfResultsInner, type ExchangeInner, type Financial, type Financials, FinancialsPeriodEnum, type ForexConversion, type ForexConversionLast, type ForexGroupedResults, type ForexHistoricTrades, type ForexPairLastQuote, type ForexPreviousClose, type ForexSnapshotLastQuote, type ForexSnapshotPrevDay, type ForexSnapshotTicker, type ForexSnapshotTickers, type ForexTickerResults, type GetBenzingaV1AnalystInsights200Response, type GetBenzingaV1AnalystInsights200ResponseResultsInner, GetBenzingaV1AnalystInsights200ResponseStatusEnum, type GetBenzingaV1AnalystInsights400Response, GetBenzingaV1AnalystInsights400ResponseStatusEnum, type GetBenzingaV1Analysts200Response, type GetBenzingaV1Analysts200ResponseResultsInner, GetBenzingaV1Analysts200ResponseStatusEnum, type GetBenzingaV1ConsensusRatings200Response, type GetBenzingaV1ConsensusRatings200ResponseResultsInner, GetBenzingaV1ConsensusRatings200ResponseStatusEnum, type GetBenzingaV1Earnings200Response, type GetBenzingaV1Earnings200ResponseResultsInner, GetBenzingaV1Earnings200ResponseStatusEnum, type GetBenzingaV1Firms200Response, type GetBenzingaV1Firms200ResponseResultsInner, GetBenzingaV1Firms200ResponseStatusEnum, type GetBenzingaV1Guidance200Response, type GetBenzingaV1Guidance200ResponseResultsInner, GetBenzingaV1Guidance200ResponseStatusEnum, type GetBenzingaV1News200Response, type GetBenzingaV1News200ResponseResultsInner, GetBenzingaV1News200ResponseStatusEnum, type GetBenzingaV1Ratings200Response, type GetBenzingaV1Ratings200ResponseResultsInner, GetBenzingaV1Ratings200ResponseStatusEnum, type GetBenzingaV2News200Response, type GetBenzingaV2News200ResponseResultsInner, GetBenzingaV2News200ResponseStatusEnum, type GetCryptoAggregates200Response, type GetCryptoAggregates200ResponseAllOfResultsInner, GetCryptoAggregatesSortEnum, GetCryptoAggregatesTimespanEnum, type GetCryptoEMA200Response, type GetCryptoEMA200ResponseResults, type GetCryptoEMA200ResponseResultsUnderlying, type GetCryptoEMA200ResponseResultsUnderlyingAggregatesInner, type GetCryptoEMA200ResponseResultsValuesInner, GetCryptoEMAOrderEnum, GetCryptoEMASeriesTypeEnum, GetCryptoEMATimespanEnum, type GetCryptoMACD200Response, type GetCryptoMACD200ResponseResults, type GetCryptoMACD200ResponseResultsValuesInner, GetCryptoMACDOrderEnum, GetCryptoMACDSeriesTypeEnum, GetCryptoMACDTimespanEnum, type GetCryptoOpenClose200Response, type GetCryptoRSI200Response, type GetCryptoRSI200ResponseResults, GetCryptoRSIOrderEnum, GetCryptoRSISeriesTypeEnum, GetCryptoRSITimespanEnum, type GetCryptoSMA200Response, type GetCryptoSMA200ResponseResults, GetCryptoSMAOrderEnum, GetCryptoSMASeriesTypeEnum, GetCryptoSMATimespanEnum, type GetCryptoSnapshotDirection200Response, GetCryptoSnapshotDirectionDirectionEnum, type GetCryptoSnapshotTicker200Response, type GetCryptoSnapshotTicker200ResponseAllOfTicker, type GetCryptoSnapshotTickers200Response, type GetCryptoSnapshotTickers200ResponseAllOfTickersInner, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerDay, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerMin, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetCryptoTrades200Response, type GetCryptoTrades200ResponseResultsInner, GetCryptoTradesOrderEnum, GetCryptoTradesSortEnum, type GetCryptoV1Exchanges200Response, type GetCryptoV1Exchanges200ResponseResultsInner, GetCryptoV1Exchanges200ResponseStatusEnum, type GetCurrencyConversion200Response, type GetCurrencyConversion200ResponseLast, GetCurrencyConversionPrecisionEnum, type GetEtfGlobalV1Analytics200Response, type GetEtfGlobalV1Analytics200ResponseResultsInner, GetEtfGlobalV1Analytics200ResponseStatusEnum, type GetEtfGlobalV1Constituents200Response, type GetEtfGlobalV1Constituents200ResponseResultsInner, GetEtfGlobalV1Constituents200ResponseStatusEnum, type GetEtfGlobalV1FundFlows200Response, type GetEtfGlobalV1FundFlows200ResponseResultsInner, GetEtfGlobalV1FundFlows200ResponseStatusEnum, type GetEtfGlobalV1Profiles200Response, type GetEtfGlobalV1Profiles200ResponseResultsInner, type GetEtfGlobalV1Profiles200ResponseResultsInnerCouponExposureInner, GetEtfGlobalV1Profiles200ResponseStatusEnum, type GetEtfGlobalV1Taxonomies200Response, type GetEtfGlobalV1Taxonomies200ResponseResultsInner, GetEtfGlobalV1Taxonomies200ResponseStatusEnum, type GetEvents200Response, type GetEvents200ResponseResults, type GetEvents200ResponseResultsEventsInner, type GetEvents200ResponseResultsEventsInnerOneOf, type GetEvents200ResponseResultsEventsInnerOneOfTickerChange, type GetFedV1Inflation200Response, type GetFedV1Inflation200ResponseResultsInner, GetFedV1Inflation200ResponseStatusEnum, type GetFedV1InflationExpectations200Response, type GetFedV1InflationExpectations200ResponseResultsInner, GetFedV1InflationExpectations200ResponseStatusEnum, type GetFedV1TreasuryYields200Response, type GetFedV1TreasuryYields200ResponseResultsInner, GetFedV1TreasuryYields200ResponseStatusEnum, GetForexAggregatesSortEnum, GetForexAggregatesTimespanEnum, GetForexEMAOrderEnum, GetForexEMASeriesTypeEnum, GetForexEMATimespanEnum, GetForexMACDOrderEnum, GetForexMACDSeriesTypeEnum, GetForexMACDTimespanEnum, type GetForexQuotes200Response, type GetForexQuotes200ResponseResultsInner, GetForexQuotesOrderEnum, GetForexQuotesSortEnum, GetForexRSIOrderEnum, GetForexRSISeriesTypeEnum, GetForexRSITimespanEnum, GetForexSMAOrderEnum, GetForexSMASeriesTypeEnum, GetForexSMATimespanEnum, GetForexSnapshotDirectionDirectionEnum, type GetForexSnapshotTicker200Response, type GetForexSnapshotTicker200ResponseAllOfTicker, type GetForexSnapshotTickers200Response, type GetForexSnapshotTickers200ResponseAllOfTickersInner, type GetForexSnapshotTickers200ResponseAllOfTickersInnerDay, type GetForexSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetForexSnapshotTickers200ResponseAllOfTickersInnerMin, type GetForexV1Exchanges200Response, type GetForexV1Exchanges200ResponseResultsInner, GetForexV1Exchanges200ResponseStatusEnum, type GetFuturesAggregates200Response, type GetFuturesAggregates200ResponseResultsInner, GetFuturesAggregatesSortEnum, type GetFuturesContractDetails200Response, type GetFuturesContracts200Response, type GetFuturesContracts200ResponseResultsInner, GetFuturesContractsActiveEnum, GetFuturesContractsSortEnum, GetFuturesContractsTypeEnum, type GetFuturesDailySchedules200Response, GetFuturesDailySchedulesSortEnum, type GetFuturesMarketStatuses200Response, type GetFuturesMarketStatuses200ResponseResultsInner, GetFuturesMarketStatuses200ResponseResultsInnerMarketStatusEnum, GetFuturesMarketStatusesSortEnum, type GetFuturesProductDetails200Response, GetFuturesProductDetailsTypeEnum, type GetFuturesProductSchedules200Response, type GetFuturesProductSchedules200ResponseResultsInner, type GetFuturesProductSchedules200ResponseResultsInnerScheduleInner, GetFuturesProductSchedules200ResponseResultsInnerScheduleInnerEventEnum, GetFuturesProductSchedulesSortEnum, type GetFuturesProducts200Response, type GetFuturesProducts200ResponseResultsInner, GetFuturesProducts200ResponseResultsInnerClearingChannelEnum, GetFuturesProductsAssetClassEnum, GetFuturesProductsAssetSubClassEnum, GetFuturesProductsSectorEnum, GetFuturesProductsSortEnum, GetFuturesProductsSubSectorEnum, GetFuturesProductsTypeEnum, type GetFuturesQuotes200Response, type GetFuturesQuotes200ResponseResultsInner, GetFuturesQuotesSortEnum, type GetFuturesTrades200Response, type GetFuturesTrades200ResponseResultsInner, GetFuturesTradesSortEnum, type GetFuturesVXExchanges200Response, type GetFuturesVXExchanges200ResponseResultsInner, GetFuturesVXExchanges200ResponseStatusEnum, type GetFuturesVXSnapshot200Response, type GetFuturesVXSnapshot200ResponseResultsInner, type GetFuturesVXSnapshot200ResponseResultsInnerDetails, type GetFuturesVXSnapshot200ResponseResultsInnerLastMinute, type GetFuturesVXSnapshot200ResponseResultsInnerLastQuote, type GetFuturesVXSnapshot200ResponseResultsInnerLastTrade, type GetFuturesVXSnapshot200ResponseResultsInnerSession, GetFuturesVXSnapshot200ResponseStatusEnum, type GetGroupedCryptoAggregates200Response, type GetGroupedCryptoAggregates200ResponseAllOfResultsInner, type GetGroupedStocksAggregates200Response, type GetGroupedStocksAggregates200ResponseAllOfResultsInner, GetIndicesAggregatesSortEnum, GetIndicesAggregatesTimespanEnum, GetIndicesEMAOrderEnum, GetIndicesEMASeriesTypeEnum, GetIndicesEMATimespanEnum, GetIndicesMACDOrderEnum, GetIndicesMACDSeriesTypeEnum, GetIndicesMACDTimespanEnum, type GetIndicesOpenClose200Response, GetIndicesRSIOrderEnum, GetIndicesRSISeriesTypeEnum, GetIndicesRSITimespanEnum, GetIndicesSMAOrderEnum, GetIndicesSMASeriesTypeEnum, GetIndicesSMATimespanEnum, type GetIndicesSnapshot200Response, type GetIndicesSnapshot200ResponseResultsInner, type GetIndicesSnapshot200ResponseResultsInnerSession, GetIndicesSnapshot200ResponseResultsInnerTimeframeEnum, GetIndicesSnapshot200ResponseResultsInnerTypeEnum, GetIndicesSnapshotOrderEnum, GetIndicesSnapshotSortEnum, type GetLastCryptoTrade200Response, type GetLastCryptoTrade200ResponseLast, type GetLastCurrencyQuote200Response, type GetLastOptionsTrade200Response, type GetLastOptionsTrade200ResponseResults, type GetLastStocksQuote200Response, type GetLastStocksQuote200ResponseResults, type GetMarketHolidays200ResponseInner, type GetMarketStatus200Response, type GetMarketStatus200ResponseCurrencies, type GetMarketStatus200ResponseExchanges, type GetMarketStatus200ResponseIndicesGroups, type GetOptionContract200Response, GetOptionsAggregatesSortEnum, GetOptionsAggregatesTimespanEnum, type GetOptionsChain200Response, type GetOptionsChain200ResponseResultsInner, type GetOptionsChain200ResponseResultsInnerDay, type GetOptionsChain200ResponseResultsInnerDetails, GetOptionsChain200ResponseResultsInnerDetailsContractTypeEnum, GetOptionsChain200ResponseResultsInnerDetailsExerciseStyleEnum, type GetOptionsChain200ResponseResultsInnerLastQuote, GetOptionsChain200ResponseResultsInnerLastQuoteTimeframeEnum, type GetOptionsChain200ResponseResultsInnerLastTrade, GetOptionsChain200ResponseResultsInnerLastTradeTimeframeEnum, GetOptionsChainContractTypeEnum, GetOptionsChainOrderEnum, GetOptionsChainSortEnum, type GetOptionsContract200Response, GetOptionsEMAOrderEnum, GetOptionsEMASeriesTypeEnum, GetOptionsEMATimespanEnum, GetOptionsMACDOrderEnum, GetOptionsMACDSeriesTypeEnum, GetOptionsMACDTimespanEnum, type GetOptionsOpenClose200Response, type GetOptionsQuotes200Response, type GetOptionsQuotes200ResponseResultsInner, GetOptionsQuotesOrderEnum, GetOptionsQuotesSortEnum, GetOptionsRSIOrderEnum, GetOptionsRSISeriesTypeEnum, GetOptionsRSITimespanEnum, GetOptionsSMAOrderEnum, GetOptionsSMASeriesTypeEnum, GetOptionsSMATimespanEnum, type GetOptionsTrades200Response, type GetOptionsTrades200ResponseResultsInner, GetOptionsTradesOrderEnum, GetOptionsTradesSortEnum, type GetOptionsV1Exchanges200Response, type GetOptionsV1Exchanges200ResponseResultsInner, GetOptionsV1Exchanges200ResponseStatusEnum, type GetPreviousCryptoAggregates200Response, type GetPreviousForexAggregates200Response, type GetPreviousForexAggregates200ResponseAllOfResultsInner, type GetPreviousIndicesAggregates200Response, type GetPreviousIndicesAggregates200ResponseAllOfResultsInner, type GetRelatedCompanies200Response, type GetRelatedCompanies200ResponseResultsInner, type GetSnapshotSummary200Response, type GetSnapshotSummary200ResponseResultsInner, type GetSnapshotSummary200ResponseResultsInnerBranding, type GetSnapshotSummary200ResponseResultsInnerOptions, GetSnapshotSummary200ResponseResultsInnerOptionsContractTypeEnum, GetSnapshotSummary200ResponseResultsInnerOptionsExerciseStyleEnum, type GetSnapshotSummary200ResponseResultsInnerSession, GetSnapshotSummary200ResponseResultsInnerTypeEnum, type GetSnapshots200Response, type GetSnapshots200ResponseResultsInner, type GetSnapshots200ResponseResultsInnerDetails, GetSnapshots200ResponseResultsInnerDetailsContractTypeEnum, GetSnapshots200ResponseResultsInnerDetailsExerciseStyleEnum, type GetSnapshots200ResponseResultsInnerGreeks, type GetSnapshots200ResponseResultsInnerLastMinute, type GetSnapshots200ResponseResultsInnerLastQuote, GetSnapshots200ResponseResultsInnerLastQuoteTimeframeEnum, type GetSnapshots200ResponseResultsInnerLastTrade, GetSnapshots200ResponseResultsInnerLastTradeTimeframeEnum, GetSnapshots200ResponseResultsInnerTimeframeEnum, GetSnapshots200ResponseResultsInnerTypeEnum, type GetSnapshots200ResponseResultsInnerUnderlyingAsset, GetSnapshots200ResponseResultsInnerUnderlyingAssetTimeframeEnum, GetSnapshotsOrderEnum, GetSnapshotsSortEnum, GetSnapshotsTypeEnum, type GetStocksAggregates200Response, type GetStocksAggregates200ResponseAllOfResultsInner, GetStocksAggregatesSortEnum, GetStocksAggregatesTimespanEnum, GetStocksEMAOrderEnum, GetStocksEMASeriesTypeEnum, GetStocksEMATimespanEnum, type GetStocksFinancialsV1BalanceSheets200Response, type GetStocksFinancialsV1BalanceSheets200ResponseResultsInner, GetStocksFinancialsV1BalanceSheets200ResponseStatusEnum, type GetStocksFinancialsV1CashFlowStatements200Response, type GetStocksFinancialsV1CashFlowStatements200ResponseResultsInner, GetStocksFinancialsV1CashFlowStatements200ResponseStatusEnum, type GetStocksFinancialsV1IncomeStatements200Response, type GetStocksFinancialsV1IncomeStatements200ResponseResultsInner, GetStocksFinancialsV1IncomeStatements200ResponseStatusEnum, type GetStocksFinancialsV1Ratios200Response, type GetStocksFinancialsV1Ratios200ResponseResultsInner, GetStocksFinancialsV1Ratios200ResponseStatusEnum, GetStocksMACDOrderEnum, GetStocksMACDSeriesTypeEnum, GetStocksMACDTimespanEnum, type GetStocksQuotes200Response, type GetStocksQuotes200ResponseResultsInner, GetStocksQuotesOrderEnum, GetStocksQuotesSortEnum, GetStocksRSIOrderEnum, GetStocksRSISeriesTypeEnum, GetStocksRSITimespanEnum, GetStocksSMAOrderEnum, GetStocksSMASeriesTypeEnum, GetStocksSMATimespanEnum, type GetStocksSnapshotDirection200Response, GetStocksSnapshotDirectionDirectionEnum, type GetStocksSnapshotTicker200Response, type GetStocksSnapshotTicker200ResponseAllOfTicker, type GetStocksSnapshotTickers200Response, type GetStocksSnapshotTickers200ResponseAllOfTickersInner, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetStocksTrades200Response, type GetStocksTrades200ResponseResultsInner, GetStocksTradesOrderEnum, GetStocksTradesSortEnum, type GetStocksV1Exchanges200Response, type GetStocksV1Exchanges200ResponseResultsInner, GetStocksV1Exchanges200ResponseStatusEnum, type GetStocksV1ShortInterest200Response, type GetStocksV1ShortInterest200ResponseResultsInner, GetStocksV1ShortInterest200ResponseStatusEnum, type GetStocksV1ShortVolume200Response, type GetStocksV1ShortVolume200ResponseResultsInner, GetStocksV1ShortVolume200ResponseStatusEnum, type GetTicker200Response, type GetTicker200ResponseResults, type GetTicker200ResponseResultsAddress, type GetTicker200ResponseResultsBranding, GetTicker200ResponseResultsLocaleEnum, GetTicker200ResponseResultsMarketEnum, type GetTmxV1CorporateEvents200Response, type GetTmxV1CorporateEvents200ResponseResultsInner, GetTmxV1CorporateEvents200ResponseStatusEnum, type IAggegateForexEvent, type IAggregateCryptoEvent, type IAggregateFuturesEvent, type IAggregateIndexEvent, type IAggregateOptionsEvent, type IAggregateStockEvent, type IFMVCryptoEvent, type IFMVForexEvent, type IFMVOptionsEvent, type IFMVStockEvent, type IIndexValueEvent, type ILULDStockEvent, type IPolygonClient, type IQuoteCryptoEvent, type IQuoteForexEvent, type IQuoteFuturesEvent, type IQuoteOptionsEvent, type IQuoteStockEvent, type ITradeCryptoEvent, type ITradeFuturesEvent, type ITradeOptionsEvent, type ITradeStockEvent, type IWebsocketClient, type IndexAggsBase, type IndicesGroupedResults, type IndicesOpenClose, type IndicesTickerResults, type IndicesTickerResultsResultsInner, type ListConditions200Response, type ListConditions200ResponseResultsInner, ListConditions200ResponseResultsInnerAssetClassEnum, ListConditions200ResponseResultsInnerDataTypesEnum, type ListConditions200ResponseResultsInnerSipMapping, ListConditions200ResponseResultsInnerTypeEnum, type ListConditions200ResponseResultsInnerUpdateRules, type ListConditions200ResponseResultsInnerUpdateRulesConsolidated, type ListConditions200ResponseResultsInnerUpdateRulesMarketCenter, type ListConditions400Response, ListConditionsAssetClassEnum, ListConditionsDataTypeEnum, ListConditionsOrderEnum, ListConditionsSipEnum, ListConditionsSortEnum, type ListDividends200Response, type ListDividends200ResponseResultsInner, ListDividends200ResponseResultsInnerDividendTypeEnum, ListDividendsDividendTypeEnum, ListDividendsFrequencyEnum, ListDividendsOrderEnum, ListDividendsSortEnum, type ListExchanges200Response, type ListExchanges200ResponseResultsInner, ListExchanges200ResponseResultsInnerAssetClassEnum, ListExchanges200ResponseResultsInnerLocaleEnum, ListExchanges200ResponseResultsInnerTypeEnum, type ListExchanges400Response, ListExchangesAssetClassEnum, ListExchangesLocaleEnum, type ListFinancials200Response, type ListFinancials200ResponseResultsInner, type ListFinancials200ResponseResultsInnerFinancials, type ListFinancials200ResponseResultsInnerFinancialsBalanceSheet, ListFinancialsOrderEnum, ListFinancialsSortEnum, ListFinancialsTimeframeEnum, type ListIPOs200Response, type ListIPOs200ResponseResultsInner, ListIPOs200ResponseResultsInnerIpoStatusEnum, ListIPOsIpoStatusEnum, ListIPOsOrderEnum, ListIPOsSortEnum, type ListNews200Response, type ListNews200ResponseResultsInner, type ListNews200ResponseResultsInnerInsightsInner, ListNews200ResponseResultsInnerInsightsInnerSentimentEnum, type ListNews200ResponseResultsInnerPublisher, ListNewsOrderEnum, type ListNewsPublishedUtcParameter, ListNewsSortEnum, type ListOptionsContracts200Response, type ListOptionsContracts200ResponseResultsInner, type ListOptionsContracts200ResponseResultsInnerAdditionalUnderlyingsInner, ListOptionsContracts200ResponseResultsInnerExerciseStyleEnum, ListOptionsContractsContractTypeEnum, ListOptionsContractsOrderEnum, ListOptionsContractsSortEnum, type ListStockSplits200Response, type ListStockSplits200ResponseResultsInner, ListStockSplitsOrderEnum, ListStockSplitsSortEnum, type ListTickerTypes200Response, type ListTickerTypes200ResponseResultsInner, ListTickerTypes200ResponseResultsInnerAssetClassEnum, ListTickerTypes200ResponseResultsInnerLocaleEnum, ListTickerTypesAssetClassEnum, ListTickerTypesLocaleEnum, type ListTickers200Response, type ListTickers200ResponseResultsInner, ListTickers200ResponseResultsInnerLocaleEnum, ListTickers200ResponseResultsInnerMarketEnum, ListTickersMarketEnum, ListTickersOrderEnum, ListTickersSortEnum, ListTickersTypeEnum, type Locales, type LocalesResultsInner, type MapKey, MapKeyTypeEnum, type MarketHolidayInner, type MarketStatus, type MarketStatusCurrencies, type MarketStatusExchanges, type Markets, type MarketsResultsInner, type ModelDate, type ModelMap, type NewsInner, type PaginationHooksBase, type RatingSection, type RequestIdBase, type SnapshotMinOHLCV, type SnapshotOHLCV, type SnapshotOHLCVVW, type SnapshotOHLCVVWOtc, type StandardBase, type StatusBase, type StatusCountBase, type StocksGroupedResults, type StocksOpenClose, type StocksSnapshotLastQuote, type StocksSnapshotMinute, type StocksSnapshotMinuteOTC, type StocksSnapshotTicker, type StocksSnapshotTickers, type StocksTickerResultsOTC, type StocksV2Base, type StocksV2NBBO, type StocksV2NBBOs, type StocksV2Trade, type StocksV2Trades, type TickerBase, type TickerResults, type TradeDetailsMapItem, type V1LastBase, type V2AggsBase, type V2LastBase, type V2TicksBase, polygonClient as default, getCryptoWebsocket, getForexWebsocket, getFuturesWebsocket, getIndicesWebsocket, getOptionsWebsocket, getStocksWebsocket, polygonClient, restClient, websocketClient };
|
|
27981
|
+
export { type Company, type ConditionTypeMap, Configuration, type ConfigurationParameters, type CryptoExchangeInner, type CryptoGroupedResults, type CryptoHistoricTrades, type CryptoLastTrade, type CryptoLastTradeLast, type CryptoOpenClose, type CryptoSnapshotMinute, type CryptoSnapshotTicker, type CryptoSnapshotTickerFullBook, type CryptoSnapshotTickers, type CryptoTick, DefaultApi, DefaultApiAxiosParamCreator, DefaultApiFactory, DefaultApiFp, type DeprecatedGetCryptoSnapshotTickerBook200Response, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfData, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfDataAsksInner, type DeprecatedGetHistoricCryptoTrades200Response, type DeprecatedGetHistoricCryptoTrades200ResponseAllOfTicksInner, type DeprecatedGetHistoricForexQuotes200Response, type DeprecatedGetHistoricForexQuotes200ResponseAllOfTicksInner, type DeprecatedGetHistoricStocksQuotes200Response, type DeprecatedGetHistoricStocksQuotes200ResponseAllOfResultsInner, type DeprecatedGetHistoricStocksTrades200Response, type DeprecatedGetHistoricStocksTrades200ResponseAllOfResultsInner, type ExchangeInner, type Financial, type Financials, FinancialsPeriodEnum, type ForexConversion, type ForexConversionLast, type ForexGroupedResults, type ForexHistoricTrades, type ForexPairLastQuote, type ForexPreviousClose, type ForexSnapshotLastQuote, type ForexSnapshotPrevDay, type ForexSnapshotTicker, type ForexSnapshotTickers, type ForexTickerResults, type GetBenzingaV1AnalystInsights200Response, type GetBenzingaV1AnalystInsights200ResponseResultsInner, GetBenzingaV1AnalystInsights200ResponseStatusEnum, type GetBenzingaV1AnalystInsights400Response, GetBenzingaV1AnalystInsights400ResponseStatusEnum, type GetBenzingaV1Analysts200Response, type GetBenzingaV1Analysts200ResponseResultsInner, GetBenzingaV1Analysts200ResponseStatusEnum, type GetBenzingaV1ConsensusRatings200Response, type GetBenzingaV1ConsensusRatings200ResponseResultsInner, GetBenzingaV1ConsensusRatings200ResponseStatusEnum, type GetBenzingaV1Earnings200Response, type GetBenzingaV1Earnings200ResponseResultsInner, GetBenzingaV1Earnings200ResponseStatusEnum, type GetBenzingaV1Firms200Response, type GetBenzingaV1Firms200ResponseResultsInner, GetBenzingaV1Firms200ResponseStatusEnum, type GetBenzingaV1Guidance200Response, type GetBenzingaV1Guidance200ResponseResultsInner, GetBenzingaV1Guidance200ResponseStatusEnum, type GetBenzingaV1News200Response, type GetBenzingaV1News200ResponseResultsInner, GetBenzingaV1News200ResponseStatusEnum, type GetBenzingaV1Ratings200Response, type GetBenzingaV1Ratings200ResponseResultsInner, GetBenzingaV1Ratings200ResponseStatusEnum, type GetBenzingaV2News200Response, type GetBenzingaV2News200ResponseResultsInner, GetBenzingaV2News200ResponseStatusEnum, type GetCryptoAggregates200Response, type GetCryptoAggregates200ResponseAllOfResultsInner, GetCryptoAggregatesSortEnum, GetCryptoAggregatesTimespanEnum, type GetCryptoEMA200Response, type GetCryptoEMA200ResponseResults, type GetCryptoEMA200ResponseResultsUnderlying, type GetCryptoEMA200ResponseResultsUnderlyingAggregatesInner, type GetCryptoEMA200ResponseResultsValuesInner, GetCryptoEMAOrderEnum, GetCryptoEMASeriesTypeEnum, GetCryptoEMATimespanEnum, type GetCryptoMACD200Response, type GetCryptoMACD200ResponseResults, type GetCryptoMACD200ResponseResultsValuesInner, GetCryptoMACDOrderEnum, GetCryptoMACDSeriesTypeEnum, GetCryptoMACDTimespanEnum, type GetCryptoOpenClose200Response, type GetCryptoRSI200Response, type GetCryptoRSI200ResponseResults, GetCryptoRSIOrderEnum, GetCryptoRSISeriesTypeEnum, GetCryptoRSITimespanEnum, type GetCryptoSMA200Response, type GetCryptoSMA200ResponseResults, GetCryptoSMAOrderEnum, GetCryptoSMASeriesTypeEnum, GetCryptoSMATimespanEnum, type GetCryptoSnapshotDirection200Response, GetCryptoSnapshotDirectionDirectionEnum, type GetCryptoSnapshotTicker200Response, type GetCryptoSnapshotTicker200ResponseAllOfTicker, type GetCryptoSnapshotTickers200Response, type GetCryptoSnapshotTickers200ResponseAllOfTickersInner, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerDay, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerMin, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetCryptoTrades200Response, type GetCryptoTrades200ResponseResultsInner, GetCryptoTradesOrderEnum, GetCryptoTradesSortEnum, type GetCryptoV1Exchanges200Response, type GetCryptoV1Exchanges200ResponseResultsInner, GetCryptoV1Exchanges200ResponseStatusEnum, type GetCurrencyConversion200Response, type GetCurrencyConversion200ResponseLast, GetCurrencyConversionPrecisionEnum, type GetEtfGlobalV1Analytics200Response, type GetEtfGlobalV1Analytics200ResponseResultsInner, GetEtfGlobalV1Analytics200ResponseStatusEnum, type GetEtfGlobalV1Constituents200Response, type GetEtfGlobalV1Constituents200ResponseResultsInner, GetEtfGlobalV1Constituents200ResponseStatusEnum, type GetEtfGlobalV1FundFlows200Response, type GetEtfGlobalV1FundFlows200ResponseResultsInner, GetEtfGlobalV1FundFlows200ResponseStatusEnum, type GetEtfGlobalV1Profiles200Response, type GetEtfGlobalV1Profiles200ResponseResultsInner, type GetEtfGlobalV1Profiles200ResponseResultsInnerCouponExposureInner, GetEtfGlobalV1Profiles200ResponseStatusEnum, type GetEtfGlobalV1Taxonomies200Response, type GetEtfGlobalV1Taxonomies200ResponseResultsInner, GetEtfGlobalV1Taxonomies200ResponseStatusEnum, type GetEvents200Response, type GetEvents200ResponseResults, type GetEvents200ResponseResultsEventsInner, type GetEvents200ResponseResultsEventsInnerOneOf, type GetEvents200ResponseResultsEventsInnerOneOfTickerChange, type GetFedV1Inflation200Response, type GetFedV1Inflation200ResponseResultsInner, GetFedV1Inflation200ResponseStatusEnum, type GetFedV1InflationExpectations200Response, type GetFedV1InflationExpectations200ResponseResultsInner, GetFedV1InflationExpectations200ResponseStatusEnum, type GetFedV1TreasuryYields200Response, type GetFedV1TreasuryYields200ResponseResultsInner, GetFedV1TreasuryYields200ResponseStatusEnum, GetForexAggregatesSortEnum, GetForexAggregatesTimespanEnum, GetForexEMAOrderEnum, GetForexEMASeriesTypeEnum, GetForexEMATimespanEnum, GetForexMACDOrderEnum, GetForexMACDSeriesTypeEnum, GetForexMACDTimespanEnum, type GetForexQuotes200Response, type GetForexQuotes200ResponseResultsInner, GetForexQuotesOrderEnum, GetForexQuotesSortEnum, GetForexRSIOrderEnum, GetForexRSISeriesTypeEnum, GetForexRSITimespanEnum, GetForexSMAOrderEnum, GetForexSMASeriesTypeEnum, GetForexSMATimespanEnum, GetForexSnapshotDirectionDirectionEnum, type GetForexSnapshotTicker200Response, type GetForexSnapshotTicker200ResponseAllOfTicker, type GetForexSnapshotTickers200Response, type GetForexSnapshotTickers200ResponseAllOfTickersInner, type GetForexSnapshotTickers200ResponseAllOfTickersInnerDay, type GetForexSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetForexSnapshotTickers200ResponseAllOfTickersInnerMin, type GetForexV1Exchanges200Response, type GetForexV1Exchanges200ResponseResultsInner, GetForexV1Exchanges200ResponseStatusEnum, type GetFuturesAggregates200Response, type GetFuturesAggregates200ResponseResultsInner, GetFuturesAggregatesSortEnum, type GetFuturesContractDetails200Response, type GetFuturesContracts200Response, type GetFuturesContracts200ResponseResultsInner, GetFuturesContractsActiveEnum, GetFuturesContractsSortEnum, GetFuturesContractsTypeEnum, type GetFuturesDailySchedules200Response, GetFuturesDailySchedulesSortEnum, type GetFuturesMarketStatuses200Response, type GetFuturesMarketStatuses200ResponseResultsInner, GetFuturesMarketStatuses200ResponseResultsInnerMarketStatusEnum, GetFuturesMarketStatusesSortEnum, type GetFuturesProductDetails200Response, GetFuturesProductDetailsTypeEnum, type GetFuturesProductSchedules200Response, type GetFuturesProductSchedules200ResponseResultsInner, type GetFuturesProductSchedules200ResponseResultsInnerScheduleInner, GetFuturesProductSchedules200ResponseResultsInnerScheduleInnerEventEnum, GetFuturesProductSchedulesSortEnum, type GetFuturesProducts200Response, type GetFuturesProducts200ResponseResultsInner, GetFuturesProducts200ResponseResultsInnerClearingChannelEnum, GetFuturesProductsAssetClassEnum, GetFuturesProductsAssetSubClassEnum, GetFuturesProductsSectorEnum, GetFuturesProductsSortEnum, GetFuturesProductsSubSectorEnum, GetFuturesProductsTypeEnum, type GetFuturesQuotes200Response, type GetFuturesQuotes200ResponseResultsInner, GetFuturesQuotesSortEnum, type GetFuturesTrades200Response, type GetFuturesTrades200ResponseResultsInner, GetFuturesTradesSortEnum, type GetFuturesVXContractsNew200Response, type GetFuturesVXContractsNew200ResponseResultsInner, GetFuturesVXContractsNew200ResponseStatusEnum, type GetFuturesVXExchanges200Response, type GetFuturesVXExchanges200ResponseResultsInner, GetFuturesVXExchanges200ResponseStatusEnum, type GetFuturesVXProductsNew200Response, type GetFuturesVXProductsNew200ResponseResultsInner, GetFuturesVXProductsNew200ResponseStatusEnum, type GetFuturesVXSnapshot200Response, type GetFuturesVXSnapshot200ResponseResultsInner, type GetFuturesVXSnapshot200ResponseResultsInnerDetails, type GetFuturesVXSnapshot200ResponseResultsInnerLastMinute, type GetFuturesVXSnapshot200ResponseResultsInnerLastQuote, type GetFuturesVXSnapshot200ResponseResultsInnerLastTrade, type GetFuturesVXSnapshot200ResponseResultsInnerSession, GetFuturesVXSnapshot200ResponseStatusEnum, type GetGroupedCryptoAggregates200Response, type GetGroupedCryptoAggregates200ResponseAllOfResultsInner, type GetGroupedStocksAggregates200Response, type GetGroupedStocksAggregates200ResponseAllOfResultsInner, GetIndicesAggregatesSortEnum, GetIndicesAggregatesTimespanEnum, GetIndicesEMAOrderEnum, GetIndicesEMASeriesTypeEnum, GetIndicesEMATimespanEnum, GetIndicesMACDOrderEnum, GetIndicesMACDSeriesTypeEnum, GetIndicesMACDTimespanEnum, type GetIndicesOpenClose200Response, GetIndicesRSIOrderEnum, GetIndicesRSISeriesTypeEnum, GetIndicesRSITimespanEnum, GetIndicesSMAOrderEnum, GetIndicesSMASeriesTypeEnum, GetIndicesSMATimespanEnum, type GetIndicesSnapshot200Response, type GetIndicesSnapshot200ResponseResultsInner, type GetIndicesSnapshot200ResponseResultsInnerSession, GetIndicesSnapshot200ResponseResultsInnerTimeframeEnum, GetIndicesSnapshot200ResponseResultsInnerTypeEnum, GetIndicesSnapshotOrderEnum, GetIndicesSnapshotSortEnum, type GetLastCryptoTrade200Response, type GetLastCryptoTrade200ResponseLast, type GetLastCurrencyQuote200Response, type GetLastOptionsTrade200Response, type GetLastOptionsTrade200ResponseResults, type GetLastStocksQuote200Response, type GetLastStocksQuote200ResponseResults, type GetMarketHolidays200ResponseInner, type GetMarketStatus200Response, type GetMarketStatus200ResponseCurrencies, type GetMarketStatus200ResponseExchanges, type GetMarketStatus200ResponseIndicesGroups, type GetOptionContract200Response, GetOptionsAggregatesSortEnum, GetOptionsAggregatesTimespanEnum, type GetOptionsChain200Response, type GetOptionsChain200ResponseResultsInner, type GetOptionsChain200ResponseResultsInnerDay, type GetOptionsChain200ResponseResultsInnerDetails, GetOptionsChain200ResponseResultsInnerDetailsContractTypeEnum, GetOptionsChain200ResponseResultsInnerDetailsExerciseStyleEnum, type GetOptionsChain200ResponseResultsInnerLastQuote, GetOptionsChain200ResponseResultsInnerLastQuoteTimeframeEnum, type GetOptionsChain200ResponseResultsInnerLastTrade, GetOptionsChain200ResponseResultsInnerLastTradeTimeframeEnum, GetOptionsChainContractTypeEnum, GetOptionsChainOrderEnum, GetOptionsChainSortEnum, type GetOptionsContract200Response, GetOptionsEMAOrderEnum, GetOptionsEMASeriesTypeEnum, GetOptionsEMATimespanEnum, GetOptionsMACDOrderEnum, GetOptionsMACDSeriesTypeEnum, GetOptionsMACDTimespanEnum, type GetOptionsOpenClose200Response, type GetOptionsQuotes200Response, type GetOptionsQuotes200ResponseResultsInner, GetOptionsQuotesOrderEnum, GetOptionsQuotesSortEnum, GetOptionsRSIOrderEnum, GetOptionsRSISeriesTypeEnum, GetOptionsRSITimespanEnum, GetOptionsSMAOrderEnum, GetOptionsSMASeriesTypeEnum, GetOptionsSMATimespanEnum, type GetOptionsTrades200Response, type GetOptionsTrades200ResponseResultsInner, GetOptionsTradesOrderEnum, GetOptionsTradesSortEnum, type GetOptionsV1Exchanges200Response, type GetOptionsV1Exchanges200ResponseResultsInner, GetOptionsV1Exchanges200ResponseStatusEnum, type GetPreviousCryptoAggregates200Response, type GetPreviousForexAggregates200Response, type GetPreviousForexAggregates200ResponseAllOfResultsInner, type GetPreviousIndicesAggregates200Response, type GetPreviousIndicesAggregates200ResponseAllOfResultsInner, type GetRelatedCompanies200Response, type GetRelatedCompanies200ResponseResultsInner, type GetSnapshotSummary200Response, type GetSnapshotSummary200ResponseResultsInner, type GetSnapshotSummary200ResponseResultsInnerBranding, type GetSnapshotSummary200ResponseResultsInnerOptions, GetSnapshotSummary200ResponseResultsInnerOptionsContractTypeEnum, GetSnapshotSummary200ResponseResultsInnerOptionsExerciseStyleEnum, type GetSnapshotSummary200ResponseResultsInnerSession, GetSnapshotSummary200ResponseResultsInnerTypeEnum, type GetSnapshots200Response, type GetSnapshots200ResponseResultsInner, type GetSnapshots200ResponseResultsInnerDetails, GetSnapshots200ResponseResultsInnerDetailsContractTypeEnum, GetSnapshots200ResponseResultsInnerDetailsExerciseStyleEnum, type GetSnapshots200ResponseResultsInnerGreeks, type GetSnapshots200ResponseResultsInnerLastMinute, type GetSnapshots200ResponseResultsInnerLastQuote, GetSnapshots200ResponseResultsInnerLastQuoteTimeframeEnum, type GetSnapshots200ResponseResultsInnerLastTrade, GetSnapshots200ResponseResultsInnerLastTradeTimeframeEnum, GetSnapshots200ResponseResultsInnerTimeframeEnum, GetSnapshots200ResponseResultsInnerTypeEnum, type GetSnapshots200ResponseResultsInnerUnderlyingAsset, GetSnapshots200ResponseResultsInnerUnderlyingAssetTimeframeEnum, GetSnapshotsOrderEnum, GetSnapshotsSortEnum, GetSnapshotsTypeEnum, type GetStocksAggregates200Response, type GetStocksAggregates200ResponseAllOfResultsInner, GetStocksAggregatesSortEnum, GetStocksAggregatesTimespanEnum, GetStocksEMAOrderEnum, GetStocksEMASeriesTypeEnum, GetStocksEMATimespanEnum, type GetStocksFinancialsV1BalanceSheets200Response, type GetStocksFinancialsV1BalanceSheets200ResponseResultsInner, GetStocksFinancialsV1BalanceSheets200ResponseStatusEnum, type GetStocksFinancialsV1CashFlowStatements200Response, type GetStocksFinancialsV1CashFlowStatements200ResponseResultsInner, GetStocksFinancialsV1CashFlowStatements200ResponseStatusEnum, type GetStocksFinancialsV1IncomeStatements200Response, type GetStocksFinancialsV1IncomeStatements200ResponseResultsInner, GetStocksFinancialsV1IncomeStatements200ResponseStatusEnum, type GetStocksFinancialsV1Ratios200Response, type GetStocksFinancialsV1Ratios200ResponseResultsInner, GetStocksFinancialsV1Ratios200ResponseStatusEnum, GetStocksMACDOrderEnum, GetStocksMACDSeriesTypeEnum, GetStocksMACDTimespanEnum, type GetStocksQuotes200Response, type GetStocksQuotes200ResponseResultsInner, GetStocksQuotesOrderEnum, GetStocksQuotesSortEnum, GetStocksRSIOrderEnum, GetStocksRSISeriesTypeEnum, GetStocksRSITimespanEnum, GetStocksSMAOrderEnum, GetStocksSMASeriesTypeEnum, GetStocksSMATimespanEnum, type GetStocksSnapshotDirection200Response, GetStocksSnapshotDirectionDirectionEnum, type GetStocksSnapshotTicker200Response, type GetStocksSnapshotTicker200ResponseAllOfTicker, type GetStocksSnapshotTickers200Response, type GetStocksSnapshotTickers200ResponseAllOfTickersInner, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetStocksTrades200Response, type GetStocksTrades200ResponseResultsInner, GetStocksTradesOrderEnum, GetStocksTradesSortEnum, type GetStocksV1Exchanges200Response, type GetStocksV1Exchanges200ResponseResultsInner, GetStocksV1Exchanges200ResponseStatusEnum, type GetStocksV1ShortInterest200Response, type GetStocksV1ShortInterest200ResponseResultsInner, GetStocksV1ShortInterest200ResponseStatusEnum, type GetStocksV1ShortVolume200Response, type GetStocksV1ShortVolume200ResponseResultsInner, GetStocksV1ShortVolume200ResponseStatusEnum, type GetTicker200Response, type GetTicker200ResponseResults, type GetTicker200ResponseResultsAddress, type GetTicker200ResponseResultsBranding, GetTicker200ResponseResultsLocaleEnum, GetTicker200ResponseResultsMarketEnum, type GetTmxV1CorporateEvents200Response, type GetTmxV1CorporateEvents200ResponseResultsInner, GetTmxV1CorporateEvents200ResponseStatusEnum, type IAggegateForexEvent, type IAggregateCryptoEvent, type IAggregateFuturesEvent, type IAggregateIndexEvent, type IAggregateOptionsEvent, type IAggregateStockEvent, type IFMVCryptoEvent, type IFMVForexEvent, type IFMVOptionsEvent, type IFMVStockEvent, type IIndexValueEvent, type ILULDStockEvent, type IMassiveClient, type INOIStockEvent, type IQuoteCryptoEvent, type IQuoteForexEvent, type IQuoteFuturesEvent, type IQuoteOptionsEvent, type IQuoteStockEvent, type ITradeCryptoEvent, type ITradeFuturesEvent, type ITradeOptionsEvent, type ITradeStockEvent, type IWebsocketClient, type IndexAggsBase, type IndicesGroupedResults, type IndicesOpenClose, type IndicesTickerResults, type IndicesTickerResultsResultsInner, type ListConditions200Response, type ListConditions200ResponseResultsInner, ListConditions200ResponseResultsInnerAssetClassEnum, ListConditions200ResponseResultsInnerDataTypesEnum, type ListConditions200ResponseResultsInnerSipMapping, ListConditions200ResponseResultsInnerTypeEnum, type ListConditions200ResponseResultsInnerUpdateRules, type ListConditions200ResponseResultsInnerUpdateRulesConsolidated, type ListConditions200ResponseResultsInnerUpdateRulesMarketCenter, type ListConditions400Response, ListConditionsAssetClassEnum, ListConditionsDataTypeEnum, ListConditionsOrderEnum, ListConditionsSipEnum, ListConditionsSortEnum, type ListDividends200Response, type ListDividends200ResponseResultsInner, ListDividends200ResponseResultsInnerDividendTypeEnum, ListDividendsDividendTypeEnum, ListDividendsFrequencyEnum, ListDividendsOrderEnum, ListDividendsSortEnum, type ListExchanges200Response, type ListExchanges200ResponseResultsInner, ListExchanges200ResponseResultsInnerAssetClassEnum, ListExchanges200ResponseResultsInnerLocaleEnum, ListExchanges200ResponseResultsInnerTypeEnum, type ListExchanges400Response, ListExchangesAssetClassEnum, ListExchangesLocaleEnum, type ListFinancials200Response, type ListFinancials200ResponseResultsInner, type ListFinancials200ResponseResultsInnerFinancials, type ListFinancials200ResponseResultsInnerFinancialsBalanceSheet, ListFinancialsOrderEnum, ListFinancialsSortEnum, ListFinancialsTimeframeEnum, type ListIPOs200Response, type ListIPOs200ResponseResultsInner, ListIPOs200ResponseResultsInnerIpoStatusEnum, ListIPOsIpoStatusEnum, ListIPOsOrderEnum, ListIPOsSortEnum, type ListNews200Response, type ListNews200ResponseResultsInner, type ListNews200ResponseResultsInnerInsightsInner, ListNews200ResponseResultsInnerInsightsInnerSentimentEnum, type ListNews200ResponseResultsInnerPublisher, ListNewsOrderEnum, type ListNewsPublishedUtcParameter, ListNewsSortEnum, type ListOptionsContracts200Response, type ListOptionsContracts200ResponseResultsInner, type ListOptionsContracts200ResponseResultsInnerAdditionalUnderlyingsInner, ListOptionsContracts200ResponseResultsInnerExerciseStyleEnum, ListOptionsContractsContractTypeEnum, ListOptionsContractsOrderEnum, ListOptionsContractsSortEnum, type ListStockSplits200Response, type ListStockSplits200ResponseResultsInner, ListStockSplitsOrderEnum, ListStockSplitsSortEnum, type ListTickerTypes200Response, type ListTickerTypes200ResponseResultsInner, ListTickerTypes200ResponseResultsInnerAssetClassEnum, ListTickerTypes200ResponseResultsInnerLocaleEnum, ListTickerTypesAssetClassEnum, ListTickerTypesLocaleEnum, type ListTickers200Response, type ListTickers200ResponseResultsInner, ListTickers200ResponseResultsInnerLocaleEnum, ListTickers200ResponseResultsInnerMarketEnum, ListTickersMarketEnum, ListTickersOrderEnum, ListTickersSortEnum, ListTickersTypeEnum, type Locales, type LocalesResultsInner, type MapKey, MapKeyTypeEnum, type MarketHolidayInner, type MarketStatus, type MarketStatusCurrencies, type MarketStatusExchanges, type Markets, type MarketsResultsInner, MassiveClient, type ModelDate, type ModelMap, type NewsInner, type PaginationHooksBase, type RatingSection, type RequestIdBase, type SnapshotMinOHLCV, type SnapshotOHLCV, type SnapshotOHLCVVW, type SnapshotOHLCVVWOtc, type StandardBase, type StatusBase, type StatusCountBase, type StocksGroupedResults, type StocksOpenClose, type StocksSnapshotLastQuote, type StocksSnapshotMinute, type StocksSnapshotMinuteOTC, type StocksSnapshotTicker, type StocksSnapshotTickers, type StocksTickerResultsOTC, type StocksV2Base, type StocksV2NBBO, type StocksV2NBBOs, type StocksV2Trade, type StocksV2Trades, type TickerBase, type TickerResults, type TradeDetailsMapItem, type V1LastBase, type V2AggsBase, type V2LastBase, type V2TicksBase, MassiveClient as default, getCryptoWebsocket, getForexWebsocket, getFuturesWebsocket, getIndicesWebsocket, getOptionsWebsocket, getStocksWebsocket, restClient, websocketClient };
|