Open Orders (DCA Feed)

Real-time tracking of significant transactions from newly activated wallets across the network.

Basic
Premium
Enterprise
Credit Cost

0


Subscribe / Unsubscribe

// Subscribe 
{
  "type": "subscribe",
  "payload": {
    "stream": "jupiter-dca-orders"
  }
}
// Unsubscribe
{
  "type": "unsubscribe",
  "payload": {
    "stream": "jupiter-dca-orders"
  }
}

Incoming message structure

// event_type opened -> program instruction: openDca & openDcaV2
{
    "type": "stream_data",
    "stream": "jupiter-dca-orders",
    "data": {
        "timestamp": 1749709086,
        "source": "jupiter-dca-orders",
        "event_type": "opened",
        "slot": "346251410",
        "datetime": "2025-06-12T06:18:06.000Z",
        "signature": "3qUYK2iH7MS4aH7JjLoiLKb8yr1Av57GSrTX8z7zqcKuRTWkZepZZzkPfEohYYnF6K4GD7SaFMQxwqLewF2wkFyi",
        "user_key": "9noKSUF5a41dNNsN7jtLhzHoaXUQxhtWtBKFH1n71zTq",
        "dca_key": "XFvd6t3hShVuYb2QoDpUNSkz4b1d9Z9qvhaj72nAKNP",
        "in_deposited": 3000000,
        "input_mint": "CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks",
        "output_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
        "input_decimals": 9,
        "output_decimals": 6,
        "cycle_frequency": 180,
        "in_amount_per_cycle": 16666.666666667,
        "created_at": 1749709086,
        "input_usd_price": 0.0031409362069101344,
        "output_usd_price": 1,
        "in_deposited_usd": 9422.808620730404,
        "type": "jupiter_dca_order"
    },
    "timestamp": 1749709088897
}

// event_type closed -> program instruction: closeDca & endAndClose
// when user_closed = true this means the DCA order has been canceled
// else the DCA order has ben fulfilled 100%
{
    "type": "stream_data",
    "stream": "jupiter-dca-orders",
    "data": {
        "timestamp": 1749717590,
        "source": "jupiter-dca-orders",
        "event_type": "closed",
        "slot": "346272648",
        "datetime": "2025-06-12T08:39:50.000Z",
        "signature": "AaY12tiqfp53HreodwGX6d7JtS2fd97H8ZmK6WQfF4kYDcnZmtssrtzzSSG9mZ76hLuMwUWuPzGyRVYiBStEUdu",
        "user_key": "BjREkMPWU4SaNXC3x9TRZw3YrzFN7xngcjn7PdYNp8SF",
        "dca_key": "DJ32pxcNPNH4HYVhqVaVgyMprqvx7oJsp6cFvYMyf2kh",
        "in_deposited": 2000,
        "input_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
        "output_mint": "5XEStNFNenRkAB9BtfteEL7yeM5XDZb8TZaPMJvNaPwx",
        "input_decimals": 6,
        "output_decimals": 9,
        "cycle_frequency": 60,
        "in_amount_per_cycle": 200,
        "created_at": 1749716976,
        "total_in_withdrawn": 0,
        "total_out_withdrawn": 1197536.015091103,
        "unfilled_amount": 0,
        "user_closed": false,
        "input_usd_price": 1,
        "output_usd_price": 0.0016283986725242677,
        "in_deposited_usd": 2000,
        "total_in_withdrawn_usd": 0,
        "total_out_withdrawn_usd": 1950.0660572743536,
        "unfilled_amount_usd": 0,
        "type": "jupiter_dca_order"
    },
    "timestamp": 1749717591903
}

// event_type fill -> program instruction: initiateFlashFill
{
    "type": "stream_data",
    "stream": "jupiter-dca-orders",
    "data": {
        "timestamp": 1749717747,
        "source": "jupiter-dca-orders",
        "event_type": "fill",
        "slot": "346273030",
        "datetime": "2025-06-12T08:42:27.000Z",
        "signature": "2rMyotbqkaL2y5DtB5n5nf4tTCsNgemCFdGsR65zRNhP13ZiV1PX3d9hP4ukhULdtTjPh95qcUDViVMwCiYss6w9",
        "user_key": "FPtuEojCLce3fxxs8dC3Npqxc9NcQCfmHf75WupCxA44",
        "dca_key": "BRChRyDXqM5Y48XV2j9LEV3fFvjoQtASvh4ShyuqD3Pc",
        "input_mint": "So11111111111111111111111111111111111111112",
        "output_mint": "63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9",
        "input_amount": 0.454959053,
        "output_amount": 2832.03927,
        "input_decimals": 9,
        "output_decimals": 5,
        "fee_mint": "63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9",
        "fee_amount": 0.000283487,
        "price_per_token": 0.00016064715550360287,
        "price_inverse": 6224.822324834583,
        "input_usd_price": 159.32368418636685,
        "output_usd_price": 0.02556930180960363,
        "input_amount_usd": 72.48575247790053,
        "output_amount_usd": 72.41326683127954,
        "type": "jupiter_dca_order"
    },
    "timestamp": 1749717750575
}

Last updated