Static Deposit Information

To retrieve information about a specific deposit on a static wallet, use the deposit UUID.

Static deposits are created automatically when the platform detects an incoming transfer to a static wallet address. No order or invoice needs to be created — deposits are tracked and recorded by the blockchain scanner.

Static Deposit Info

POST https://api-processing.crypto-chief.com/v1/static-deposit/info

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

uuid

string

true

Static deposit UUID

Response 200

json

{
  "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "paid",
  "network": "BSC_MAINNET",
  "chain_family": "EVM",
  "coin": "BNB",
  "contract": "",
  "decimals": 18,
  "to_address": "0x1234567890abcdef1234567890abcdef12345678",
  "from_address": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "tx_hash": "0xf4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16",
  "block_number": 48230156,
  "amount": "1.500000000000000000",
  "amount_fiat": "452.25",
  "confirmations": 20,
  "required_confirmations": 20,
  "found_in_mempool": true,
  "log_type": "native",
  "created_at": "2026-02-20T10:30:00Z",
  "updated_at": "2026-02-20T10:45:12Z",
  "confirmed_at": "2026-02-20T10:45:12Z",
  "paid_at": "2026-02-20T10:45:12Z"
}

Response Fields

Field
Type
Description

uuid

string

Unique deposit identifier.

status

string

Current status: in_mempool, confirm_check, paid, dropped, reorged.

network

Blockchain network (e.g. BSC_MAINNET, ETH_MAINNET).

chain_family

Chain family (e.g. EVM, TRON, SOLANA).

coin

Coin symbol (e.g. BNB, USDT, ETH).

contract

string

Token contract address. Empty string for native coin transfers.

decimals

number

Token decimal places.

to_address

string

Static wallet address (deposit recipient).

from_address

string

Sender address.

tx_hash

string

Transaction hash.

block_number

number

Block number. Present only after block inclusion.

amount

string

Deposit amount in token units (human-readable, full precision).

amount_fiat

string

USD equivalent. Empty if conversion unavailable.

confirmations

number

Current confirmation count.

required_confirmations

number

Confirmations required for finality on this network.

found_in_mempool

boolean

Whether the transaction was first detected in the mempool.

log_type

string

Transfer type: native or token.

created_at

string

ISO 8601 — when the deposit was first detected.

updated_at

string

ISO 8601 — last status update.

confirmed_at

string

ISO 8601 — when required confirmations were reached. null until confirmed.

paid_at

string

ISO 8601 — when the deposit was finalized. null until paid.

Deposit Status Reference

Status
Description
Final

in_mempool

Transaction detected in the mempool, waiting for block inclusion.

No

confirm_check

Transaction included in a block, accumulating confirmations.

No

paid

Deposit fully confirmed and finalized.

Yes

dropped

Transaction dropped from the mempool without being included in a block.

Yes

reorged

Transaction removed due to a blockchain reorganization.

Yes

Last updated