Binance Connector JS
    Preparing search index...

    Request parameters for queryOrderHistory operation in TradeApi. QueryOrderHistoryRequest

    interface QueryOrderHistoryRequest {
        endDate?: string;
        l1Category?: string;
        limit?: number;
        offset?: number;
        orderType?: QueryOrderHistoryOrderTypeEnum;
        recvWindow?: number | bigint;
        startDate?: string;
        status?: string;
        walletAddress: string;
    }
    Index

    Properties

    endDate?: string

    End date. Format: yyyy-MM-dd. Must be ≥ startDate

    TradeApiQueryOrderHistory

    l1Category?: string

    Filter by level-1 category

    TradeApiQueryOrderHistory

    limit?: number

    Page size. Default 20, range 1–100

    TradeApiQueryOrderHistory

    offset?: number

    Pagination offset. Default 0

    TradeApiQueryOrderHistory

    Filter by order type. Enum: MARKET, LIMIT

    TradeApiQueryOrderHistory

    recvWindow?: number | bigint

    Request validity window in milliseconds

    TradeApiQueryOrderHistory

    startDate?: string

    Start date. Format: yyyy-MM-dd. Must be ≤ endDate

    TradeApiQueryOrderHistory

    status?: string

    Filter by order status

    TradeApiQueryOrderHistory

    walletAddress: string

    User's prediction wallet address

    TradeApiQueryOrderHistory