Manual Withdraw Information

To retrieve withdrawal details, use the withdrawal UUID provided by our system when the withdrawal was created.

Withdrawal Info

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

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

uuid

string

true

Withdrawal UUID

{
  "uuid": "b0d1f7f9-1eaa-4c2f-8f9b-2b0d1b0b9f11",
  "status": "paid",
  "from_address": "0xF9e8d7c6b5a43210fedcba9876543210fedcba98",
  "to_address": "0xA1b2C3d4E5f6789012345678901234567890abcd",
  "amount": "100.500000",
  "network": "ETH_MAINNET",
  "coin": "USDT",
  "need_refuel": true,
  "refuel_tx_hash": "0xrefuel123abc456def789...",
  "refuel_status": "done",
  "tx_hash": "0xbbb222ccc333ddd444eee555fff666...",
  "estimated_fee_fiat": "1.20",
  "actual_fee_fiat": "1.18",
  "fee_mode": "service",
  "created_at": "2026-02-10T12:00:00Z",
  "completed_at": "2026-02-10T12:02:30Z"
}

Response Fields

Field
Type
Description

uuid

string

Unique withdrawal identifier.

status

string

Current status: queue, refueling, refuel_confirmed, sending, confirm_check, paid, system_fail.

from_address

string

Source wallet address (must belong to the project).

to_address

string

Destination address.

amount

string

Withdrawal amount in token units.

network

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

coin

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

need_refuel

boolean

Whether gas refueling was required.

refuel_tx_hash

string

Gas refuel transaction hash. null if no refuel was needed.

refuel_status

string

Refuel status: pending, done, failed. null if no refuel.

tx_hash

string

Main withdrawal transaction hash. null until broadcast.

error_reason

string

Error description when status is system_fail. Omitted on success.

estimated_fee_fiat

string

Estimated fee in USD at the time of creation.

actual_fee_fiat

string

Actual fee paid in USD. null until completed.

fee_mode

string

Fee payment mode: client, service, or mix.

created_at

string

ISO 8601 — when the withdrawal was created.

completed_at

string

ISO 8601 — when the withdrawal reached a final state. null for system_fail.

Last updated