Trading
The TypeScript SDK provides a TradeClient that wraps all order-management and account endpoints. Every method returns a typed domain object. v0.4.0 changed 8 query methods (getOrders / getActiveOrders / getInactiveOrders / getFilledOrders / getOrderTransactions / getPositions / getAssets / getPrimeAssets) to Request-object signatures (breaking; all fields optional, account defaults to config account when omitted) and added 13 new methods covering account management, asset analytics, fund transfer, forex orders, etc. Request parameters are camelCase in TypeScript and are transparently converted to snake_case on the wire.
Quick Start
import {
createClientConfig,
HttpClient,
TradeClient,
limitOrder,
} from '@tigeropenapi/tigeropen';
const config = createClientConfig();
const tc = new TradeClient(new HttpClient(config), config.account);
// Query positions (v0.4.0: accepts optional Request object for filtering)
const positions = await tc.getPositions();
// Build a limit buy
const orderReq = limitOrder(config.account, 'AAPL', 'STK', 'BUY', 10, 150.0);
orderReq.market = 'US';
orderReq.currency = 'USD';
orderReq.timeInForce = 'DAY';
// Preview without placing
const preview = await tc.previewOrder(orderReq);
// Place the order
const placed = await tc.placeOrder(orderReq);
console.log('Order id:', placed?.id);Order vs OrderRequest — query methods return
Order(richer);placeOrder/previewOrder/modifyOrderacceptOrderRequest. Use helper factories (marketOrder,limitOrder,stopOrder,stopLimitOrder,trailOrder) to build requests.
OrderStatus (aligned with Java SDK in v0.4.0)
v0.4.0 aligned the OrderStatus enum with the Java SDK. There are now 8 values, and the client automatically converts server-side integer codes to the string form during deserialization:
| Constant | String | Code |
|---|---|---|
OrderStatus.Invalid | 'Invalid' | -2 |
OrderStatus.Initial | 'Initial' | -1 |
OrderStatus.PendingCancel | 'PendingCancel' | 3 |
OrderStatus.Cancelled | 'Cancelled' | 4 |
OrderStatus.Submitted | 'Submitted' | 5 |
OrderStatus.Filled | 'Filled' | 6 |
OrderStatus.Inactive | 'Inactive' | 7 |
OrderStatus.PendingSubmit | 'PendingSubmit' | 8 |
Breaking:
PendingNew/PartiallyFilled(Python-only derivations never returned by the server) were removed;PendingSubmitwas added.
Get the numeric code with orderStatusCode(status):
import { OrderStatus, orderStatusCode } from '@tigeropenapi/tigeropen';
orderStatusCode(OrderStatus.Filled); // 6
orderStatusCode('PendingSubmit'); // 8Order.status values from the server are auto-normalized to the string forms above, so OrdersRequest.states filters use the string array (e.g. ['Filled', 'Submitted']).
Contract Query
getContract
tc.getContract(symbol: string, secType: string): Promise<Contract[]>
Description
Returns detailed contract information for a single symbol.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Contract symbol, e.g. 'AAPL' |
| secType | string | Yes | 'STK' / 'OPT' / 'FUT' / 'WAR' / 'IOPT' |
Returns
Promise<Contract[]> — symbol, secType, currency, exchange, primaryExchange, localSymbol, name, market, lotSize, contractId, isEtf, marginable, shortable, tickSizes, etc.
Example
const contracts = await tc.getContract('AAPL', 'STK');getContracts
tc.getContracts(symbols: string[], secType: string): Promise<Contract[]>
Description
Batch contract lookup.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbols | string[] | Yes | Symbols |
| secType | string | Yes | Security type |
Returns
Promise<Contract[]> (same shape as getContract).
Example
const contracts = await tc.getContracts(['AAPL', 'TSLA', 'MSFT'], 'STK');getQuoteContract
tc.getQuoteContract(symbol: string, secType: string, expiry: string): Promise<Contract[]>
Description
Derivative contract lookup (options / warrants / inline warrants). Only 'OPT' / 'WAR' / 'IOPT'.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Underlying symbol |
| secType | string | Yes | 'OPT' / 'WAR' / 'IOPT' |
| expiry | string | Yes | 'YYYYMMDD' |
Returns
Promise<Contract[]>.
Example
const cs = await tc.getQuoteContract('AAPL', 'OPT', '20260619');Order Operations
OrderRequest Fields
Fields accepted by placeOrder / previewOrder / modifyOrder. Use helper factories to build the base and then set additional fields.
| Field | Type | Description |
|---|---|---|
| account | string | Account ID (helpers fill this) |
| id | number | Global order ID (required for modify) |
| orderId | number | Account-level order ID |
| symbol | string | Contract symbol |
| secType | string | 'STK' / 'OPT' / 'FUT' / 'WAR' / 'IOPT' |
| action | string | 'BUY' / 'SELL' |
| orderType | string | 'MKT' / 'LMT' / 'STP' / 'STP_LMT' / 'TRAIL' / 'AM' / 'AL' / 'TWAP' / 'VWAP' / 'OCA' |
| totalQuantity | number | Quantity |
| limitPrice | number | Limit price (required for LMT / STP_LMT) |
| auxPrice | number | Stop/trigger price |
| trailingPercent | number | Trailing stop percent |
| timeInForce | string | 'DAY' / 'GTC' / 'GTD' / 'OPG' |
| outsideRth | boolean | Allow extended hours |
| market / currency | string | Market / currency |
| expiry / strike / right | string | Option specifics |
| orderLegs | OrderLegRequest[] | Attached P/L legs |
| algoParams | AlgoParamsRequest | Algo parameters |
Helper factories
import { marketOrder, limitOrder, stopOrder, stopLimitOrder, trailOrder } from '@tigeropenapi/tigeropen';
const o1 = marketOrder(account, symbol, secType, action, qty);
const o2 = limitOrder(account, symbol, secType, action, qty, price);
const o3 = stopOrder(account, symbol, secType, action, qty, auxPrice);
const o4 = stopLimitOrder(account, symbol, secType, action, qty, limit, aux);
const o5 = trailOrder(account, symbol, secType, action, qty, trailPct);placeOrder
tc.placeOrder(order: OrderRequest): Promise<PlaceOrderResult | undefined>
Description
Submit an order to the exchange.
Returns
Promise<PlaceOrderResult | undefined> — id (global), order_id (account-level, snake_case from server), subIds, orders: Order[].
Example
const order = limitOrder(config.account, 'AAPL', 'STK', 'BUY', 10, 150.0);
order.market = 'US';
order.currency = 'USD';
const placed = await tc.placeOrder(order);
console.log('id:', placed?.id, 'order_id:', (placed as any)?.order_id);previewOrder
tc.previewOrder(order: OrderRequest): Promise<PreviewResult | undefined>
Description
Estimate commission and margin impact without submitting.
Returns
Promise<PreviewResult | undefined> — isPass, commission, commissionCurrency, marginCurrency, initMargin/initMarginBefore, maintMargin/maintMarginBefore, equityWithLoan/equityWithLoanBefore, availableEE, excessLiquidity, overnightLiquidation, message.
Example
const preview = await tc.previewOrder(order);
console.log('isPass:', preview?.isPass, 'commission:', preview?.commission);modifyOrder
tc.modifyOrder(id: number, order: OrderRequest): Promise<OrderIdResult | undefined>
Description
Modify an open order.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | Global order ID |
| order | OrderRequest | Yes | Updated fields |
Returns
Promise<OrderIdResult | undefined>.
Example
const updated = { ...order, limitPrice: 148.0 };
const mod = await tc.modifyOrder(12345, updated);cancelOrder
tc.cancelOrder(id: number): Promise<OrderIdResult | undefined>
Description
Cancel an open order.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | Global order ID |
Returns
Promise<OrderIdResult | undefined>.
Example
const canc = await tc.cancelOrder(12345);Order Query
OrdersRequest
Shared query parameters for getOrders / getActiveOrders / getInactiveOrders / getFilledOrders. All fields are optional (account defaults to the configured account). New in v0.4.0.
| Name | Type | Description |
|---|---|---|
| account | string | Account ID |
| secType | string | 'STK' / 'OPT' / 'FUT' / 'CASH' |
| market | string | Market |
| symbol | string | Contract code |
| startDate | number | Start (ms; wire: start_date) |
| endDate | number | End (ms; wire: end_date) |
| limit | number | Row limit |
| isBrief | boolean | Return brief fields only |
| states | string[] | Status filter (see OrderStatus above) |
| sortBy | string | 'LATEST_CREATED' / 'LATEST_STATUS_UPDATED' |
| segType | string | Segment ('S' securities / 'C' futures) |
| lang | string | Language |
| pageToken | string | Page token |
| parentId | number | Parent order ID (only getActiveOrders) |
getOrders
tc.getOrders(req?: OrdersRequest): Promise<Order[]>
v0.4.0 Breaking: changed from no-arg to optional
OrdersRequest.
Description
Query all historical orders.
Parameters
See OrdersRequest above.
Returns
Promise<Order[]> — id, orderId, symbol, secType, action, orderType, status, totalQuantity, filledQuantity, limitPrice, avgFillPrice, timeInForce, outsideRth, openTime, updateTime, canModify, canCancel, isOpen, etc.
Example
const orders = await tc.getOrders();
const filtered = await tc.getOrders({
market: 'US',
secType: 'STK',
states: ['Filled'],
limit: 100,
sortBy: 'LATEST_CREATED',
});getOrder (new in v0.4.0)
tc.getOrder(req: GetOrderRequest): Promise<Order | undefined>
Description
Fetch a single order by ID. Pass either id (global) or orderId (account-level). Wire method orders (server returns a single object).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| id | number | One of | Global order ID |
| orderId | number | One of | Account-level order ID |
| isBrief | boolean | No | Brief fields only |
| showCharges | boolean | No | Include charges |
| lang | string | No | Language |
Returns
Promise<Order | undefined> (same fields as getOrders).
Example
const o = await tc.getOrder({ id: 123456789 });
console.log(`${o?.id} ${o?.symbol} status=${o?.status} filled=${o?.filledQuantity}/${o?.totalQuantity}`);getActiveOrders
tc.getActiveOrders(req?: OrdersRequest): Promise<Order[]>
v0.4.0 Breaking: changed from no-arg to optional
OrdersRequest(addsparentIdfilter).
Description
List currently open orders (not fully filled or cancelled).
Parameters
See OrdersRequest.
Returns
Promise<Order[]>.
Example
const active = await tc.getActiveOrders();
const legs = await tc.getActiveOrders({ parentId: 12345678 });getInactiveOrders
tc.getInactiveOrders(req?: OrdersRequest): Promise<Order[]>
v0.4.0 Breaking: changed from no-arg to optional
OrdersRequest.
Description
List cancelled or expired orders.
Parameters
See OrdersRequest.
Returns
Promise<Order[]>.
Example
const inactive = await tc.getInactiveOrders();
const cancelled = await tc.getInactiveOrders({
states: ['Cancelled'],
limit: 50,
});getFilledOrders
tc.getFilledOrders(req?: OrdersRequest): Promise<Order[]>
v0.4.0 Breaking: changed from positional
(startDateMs, endDateMs)toOrdersRequest; pass the time range viastartDate/endDate(ms).
Description
List filled orders.
Parameters
See OrdersRequest. startDate / endDate are ms timestamps.
Returns
Promise<Order[]>.
Example
const filled = await tc.getFilledOrders();
const now = Date.now();
const recent = await tc.getFilledOrders({
startDate: now - 30 * 24 * 3600 * 1000,
endDate: now,
limit: 200,
});getOrderTransactions
tc.getOrderTransactions(req: OrderTransactionsRequest): Promise<Transaction[]>
v0.4.0 Breaking: changed from
(orderId, symbol, secType)positional toOrderTransactionsRequest; all fields are now optional. You can query by a specific order or batch-filter by time window and symbol.
Description
Individual fill records for orders.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| orderId | number | No | Order ID (when querying fills of a specific order) |
| symbol | string | No | Contract code |
| secType | string | No | Security type |
| startDate | number | No | Start (ms) |
| endDate | number | No | End (ms) |
| limit | number | No | Row limit |
| expiry / strike / putCall | - | No | Option specifics |
| pageToken | string | No | Page token |
| lang | string | No | Language |
Returns
Promise<Transaction[]> — id, orderId, account, symbol, secType, market, currency, action, price, quantity, amount, commission, transactedAt, etc.
Example
// Fills for a specific order
const txs = await tc.getOrderTransactions({
orderId: 123456789,
symbol: 'AAPL',
secType: 'STK',
});
// All fills for a symbol within a time window
const now = Date.now();
const batch = await tc.getOrderTransactions({
symbol: 'AAPL',
secType: 'STK',
startDate: now - 7 * 24 * 3600 * 1000,
endDate: now,
limit: 100,
});Positions & Assets
getPositions
tc.getPositions(req?: PositionsRequest): Promise<Position[]>
v0.4.0 Breaking: changed from no-arg to optional
PositionsRequestwithsymbol/secType/currency/market/subAccountsfilters.
Description
List current open positions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| symbol | string | No | Contract code |
| secType | string | No | 'STK' / 'OPT' / 'FUT' / 'CASH' |
| currency | string | No | Currency |
| market | string | No | Market |
| subAccounts | string[] | No | Sub-account list |
| expiry / strike / right | string | No | Option specifics |
| assetQuoteType | string | No | Quote type |
| lang | string | No | Language |
Returns
Promise<Position[]> — symbol, secType, market, currency, position, positionQty, salableQty, averageCost, marketValue, realizedPnl, unrealizedPnl, todayPnl, latestPrice, lastClosePrice, identifier, name, multiplier.
Example
const ps = await tc.getPositions();
const us = await tc.getPositions({ market: 'US', secType: 'STK' });getAssets
tc.getAssets(req?: AssetsRequest): Promise<Asset[]>
v0.4.0 Breaking: changed from no-arg to optional
AssetsRequest.
Description
Account asset summary (with per-segment breakdown).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| segment | boolean | No | Return per-segment data |
| marketValue | boolean | No | Return market value |
| subAccounts | string[] | No | Sub-account list |
| lang | string | No | Language |
Returns
Promise<Asset[]> — account, capability, currency, buyingPower, cashValue, netLiquidation, realizedPnL, unrealizedPnL, segments: AssetSegment[] (each with category, title, netLiquidation, cashValue, availableFunds, equityWithLoan, excessLiquidity, initMarginReq, maintMarginReq, grossPositionValue, leverage).
Example
const assets = await tc.getAssets();
const detailed = await tc.getAssets({ segment: true, marketValue: true });getPrimeAssets
tc.getPrimeAssets(req?: AssetsRequest): Promise<PrimeAsset | undefined>
v0.4.0 Breaking: changed from no-arg to optional
AssetsRequest(shared withgetAssets).
Description
Prime (consolidated) account asset summary.
Parameters
See getAssets for AssetsRequest.
Returns
Promise<PrimeAsset | undefined> — accountId, updateTimestamp, segments: PrimeAssetSegment[] (each with capability, category, currency, cashBalance, cashAvailableForTrade, grossPositionValue, equityWithLoan, netLiquidation, initMargin, maintainMargin, overnightMargin, buyingPower, unrealizedPL, realizedPL, currencyAssets).
Example
const pa = await tc.getPrimeAssets();
console.log(`account=${pa?.accountId} segments=${pa?.segments.length}`);Account Management (new in v0.4.0)
getManagedAccounts
tc.getManagedAccounts(req?: ManagedAccountsRequest): Promise<ManagedAccount[]>
Description
List institutional sub-accounts managed by the current main account. Wire method accounts.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| lang | string | No | Language |
Returns
Promise<ManagedAccount[]> (account / accountType / capability / status).
Example
const subs = await tc.getManagedAccounts();getDerivativeContracts
tc.getDerivativeContracts(req: DerivativeContractsRequest): Promise<Contract[]>
Description
Batch lookup of derivative contracts by symbols + type (options / warrants / inline warrants). Same wire as getQuoteContract (quote_contract) but accepts a structured request.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| symbols | string[] | Yes | Underlying symbols |
| secType | string | Yes | 'OPT' / 'WAR' / 'IOPT' |
| expiry | string | No | Expiry ('YYYYMMDD') |
| lang | string | No | Language |
Returns
Promise<Contract[]> (same fields as getContract).
Example
const cs = await tc.getDerivativeContracts({
symbols: ['AAPL', 'TSLA'],
secType: 'OPT',
expiry: '20260619',
});Asset Analytics (new in v0.4.0)
getAnalyticsAsset
tc.getAnalyticsAsset(req: AnalyticsAssetRequest): Promise<AnalyticsAsset[]>
Description
Daily analytics: holding value, cash balance, P&L, net-value index. Wire method analytics_asset.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| segType | string | No | Segment |
| startDate | string | No | Start ('yyyy-MM-dd') |
| endDate | string | No | End ('yyyy-MM-dd') |
| lang | string | No | Language |
Returns
Promise<AnalyticsAsset[]> (date / holdingValue / cashBalance / pnl / pnlRate / netValueIndex / currency / segType).
Example
const rows = await tc.getAnalyticsAsset({
startDate: '2025-01-01',
endDate: '2025-12-31',
});getAggregateAssets
tc.getAggregateAssets(req?: AggregateAssetsRequest): Promise<AggregateAssets | undefined>
Description
Aggregate prime-account assets in a chosen baseCurrency (with per-currency detail). Wire method aggregate_assets.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| segType | string | No | Segment |
| baseCurrency | string | No | Base currency |
| lang | string | No | Language |
Returns
Promise<AggregateAssets | undefined> (accountId / netLiquidation / grossPositionValue / cashBalance / baseCurrency / currencyAssets: CurrencyAsset[]).
Example
const agg = await tc.getAggregateAssets({ baseCurrency: 'USD' });getEstimateTradableQuantity
tc.getEstimateTradableQuantity(req: EstimateTradableQuantityRequest): Promise<EstimateTradableQuantity | undefined>
Description
Estimate the maximum order quantity given the account's funds, margin, and current price. Wire method estimate_tradable_quantity.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| symbol | string | Yes | Contract code |
| secType | string | Yes | Security type |
| action | string | Yes | 'BUY' / 'SELL' |
| orderType | string | No | 'MKT' / 'LMT' / 'STP' / 'STP_LMT' |
| limitPrice | number | Cond. | Required for LMT / STP_LMT |
| market / currency | string | No | Market / currency |
| expiry / strike / right | string | No | Option specifics |
| lang | string | No | Language |
Returns
Promise<EstimateTradableQuantity | undefined> (tradableQuantity / maxCashBuyQuantity / maxMarginBuyQuantity / maxShortSellQuantity / maxPositionSellQty / cashBuyingPower / currency).
Example
const est = await tc.getEstimateTradableQuantity({
symbol: 'AAPL',
secType: 'STK',
action: 'BUY',
orderType: 'LMT',
limitPrice: 150.0,
});Fund Details & Transfers (new in v0.4.0)
getFundDetails
tc.getFundDetails(req: FundDetailsRequest): Promise<FundDetails[]>
Description
Fund-movement ledger (deposits / withdrawals / fees / interest / dividends). Wire method fund_details.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| segTypes | string[] | No | Segment list |
| fundType | string | No | Fund type |
| currency | string | No | Currency |
| startDate | number | No | Start (ms) |
| endDate | number | No | End (ms) |
| limit | number | No | Row limit |
| pageToken | string | No | Page token |
| lang | string | No | Language |
Returns
Promise<FundDetails[]> (id / account / segType / fundType / currency / amount / balance / occurTime / remark / externalId).
Example
const now = Date.now();
const rows = await tc.getFundDetails({
startDate: now - 30 * 24 * 3600 * 1000,
endDate: now,
currency: 'USD',
limit: 100,
});getFundingHistory
tc.getFundingHistory(req: FundingHistoryRequest): Promise<FundingHistoryItem[]>
Description
Deposit / withdrawal history. Wire method transfer_fund.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| segType | string | No | Segment |
| currency | string | No | Currency |
| startDate | number | No | Start (ms) |
| endDate | number | No | End (ms) |
| limit | number | No | Row limit |
| lang | string | No | Language |
Returns
Promise<FundingHistoryItem[]> (id / segType / currency / status / amount / submitTime / updateTime).
Example
const rows = await tc.getFundingHistory({});placeForexOrder
tc.placeForexOrder(req: ForexOrderRequest): Promise<ForexOrderResult | undefined>
Description
Submit a forex conversion order. Wire method place_forex_order.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| segType | string | No | Segment |
| sourceCurrency | string | Yes | Source currency |
| targetCurrency | string | Yes | Target currency |
| sourceAmount | number | No | Source amount |
| targetAmount | number | No | Target amount |
| orderType | string | No | Order type |
| lang | string | No | Language |
Returns
Promise<ForexOrderResult | undefined> (id / status / sourceCurrency / targetCurrency / sourceAmount / targetAmount / rate / submitTime).
Example
const res = await tc.placeForexOrder({
sourceCurrency: 'USD',
sourceAmount: 10000,
targetCurrency: 'HKD',
});getSegmentFundAvailable
tc.getSegmentFundAvailable(req: SegmentFundRequest): Promise<SegmentFund[]>
Description
Query the amount available for inter-segment transfer. Wire method segment_fund_available.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| fromSegment | string | No | Source segment |
| toSegment | string | No | Target segment |
| currency | string | No | Currency |
| lang | string | No | Language |
Returns
Promise<SegmentFund[]> (fromSegment / toSegment / currency / availableAmt).
Example
const avail = await tc.getSegmentFundAvailable({
fromSegment: 'S',
toSegment: 'C',
currency: 'USD',
});getSegmentFundHistory
tc.getSegmentFundHistory(req: SegmentFundRequest): Promise<SegmentFundHistoryItem[]>
Description
Inter-segment transfer history. Wire method segment_fund_history.
Parameters
Same as SegmentFundRequest (typically filter with limit).
Returns
Promise<SegmentFundHistoryItem[]> (id / fromSegment / toSegment / currency / amount / status / submitTime / updateTime).
Example
const history = await tc.getSegmentFundHistory({ limit: 50 });transferSegmentFund
tc.transferSegmentFund(req: SegmentFundRequest): Promise<SegmentFund | undefined>
Description
Submit an inter-segment fund transfer. Wire method transfer_segment_fund.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| account | string | No | Account ID |
| fromSegment | string | Yes | Source segment |
| toSegment | string | Yes | Target segment |
| currency | string | Yes | Currency |
| amount | number | Yes | Amount |
| lang | string | No | Language |
Returns
Promise<SegmentFund | undefined> (with id / status / submitTime).
Example
const res = await tc.transferSegmentFund({
fromSegment: 'S',
toSegment: 'C',
currency: 'USD',
amount: 1000,
});cancelSegmentFund
tc.cancelSegmentFund(req: SegmentFundRequest): Promise<SegmentFund | undefined>
Description
Cancel a pending inter-segment transfer. Wire method cancel_segment_fund.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Transfer ID (from transferSegmentFund) |
| account | string | No | Account ID |
| lang | string | No | Language |
Returns
Promise<SegmentFund | undefined>.
Example
const res = await tc.cancelSegmentFund({ id: 'TX123456' });Generic Raw API Call
When the SDK has not yet wrapped a specific API endpoint, use the HttpClient directly:
import {
createClientConfig,
HttpClient,
createApiRequest,
} from '@tigeropenapi/tigeropen';
const config = createClientConfig();
const httpClient = new HttpClient(config);
const request = createApiRequest('market_state', { market: 'US' });
const resp = await httpClient.executeRequest(request);
console.log('Raw response:', resp.data);Updated 15 days ago
