Sweep History by Wallet

Returns the sweep execution history for a specific wallet, including all automatic and manual sweep operations associated with it.

Sweep History by Wallet

POST https://api-processing.crypto-chief.com/v1/sweeps/wallet/history

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

address

string

true

Address of the wallet

mode

string

false

Sweep mode used for execution auto or force. When not provided, results include all modes.

page_size

number

false

Sweeps per page

page

number

false

Page number for pagination

Response

{
    "items": [
        {
            "amount_human": "0.0005008",
            "asset_symbol": "ETH",
            "asset_type": "native",
            "chain": "ETH_SEPOLIA",
            "chain_family": "EVM",
            "created_at": "2026-01-20T14:19:52.91Z",
            "gas_pump_fee_human": "0",
            "gas_pump_fee_usd": "0",
            "gas_pump_source": "none",
            "gas_pump_tx_hash": "",
            "real_gas_pump_fee_human": "0",
            "real_gas_pump_fee_usd": "0",
            "real_sweep_fee_human": "0.000064691434689",
            "real_sweep_fee_usd": "0.198298",
            "status": "completed",
            "sweep_fee_human": "0",
            "sweep_fee_usd": "0",
            "sweep_tx_hash": "0x56fb682800df8617422d1f8c0c83ab5430713ec3b62a9943e43d51a5e4fd0a8b",
            "task_id": "15c448ec-406f-440c-a193-8fad18a21285",
            "total_fee_usd": "0",
            "type_work": "force",
            "wallet_address": "0x993C305aA63b16A543C952f6573fD49790662D39"
        }
    ],
    "meta": {
        "page": 1,
        "page_size": 20,
        "total": 1
    }
}

Last updated