PayOut History

Payment History

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

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

date_from

string

format:

YYYY-MM-DDTHH:MM:SS±HH:MM

true

Creation date, from

date_to

string

format:

YYYY-MM-DDTHH:MM:SS±HH:MM

true

Creation date, to

page

number

false

Page number for pagination

page_size

number

false

Orders per page

Response

{
    "items": [
     {
      "uuid": "b0d1f7f9-1eaa-4c2f-8f9b-2b0d1b0b9f11",
      "order_id": "withdraw-100-001",
      "status": "queue",
    
      "amount_requested": "100.00",
      "amount_to_receive": "100.00",
    
      "fee_info": {
        "fee_mode": "service",
        "estimated_fiat": "1.27",
        "limit_fiat": "2.00",
        "limit_currency": "USD",
        "total_fee_paid_fiat": null
      },
    
      "sources": [
        {
          "address": "0xA1b2c3d4e5f6",
          "network": "ETH_MAINNET",
          "coin": "USDT",
          "amount_crypto": "60.00",
    
          "need_refuel": false,
          "refuel_amount": "0",
          "estimated_fee": "0.00045",
          "estimated_fee_fiat": "0.58",
          "fee_paid": null,
          "fee_paid_fiat": null,
          "txid": null
        },
        {
          "address": "0xF9e8d7c6b5a4",
          "network": "ETH_MAINNET",
          "coin": "USDT",
          "amount_crypto": "40.00",
    
          "need_refuel": true,
          "refuel_amount": "0.003",
          "estimated_fee": "0.00038",
          "estimated_fee_fiat": "0.49",
          "fee_paid": null,
          "fee_paid_fiat": null,
          "txid": null
        }
      ],
    
      "service_operations": [
        {
          "type": "gas_refuel",
          "context": "payout_prepare",
          "status": "planned",
        
          "network": "ETH_MAINNET",
          "coin": "ETH",
          "amount_native": "0.003",
        
          "from_address": "0xSERVICE_WALLET",
          "to_address": "0xF9e8d7c6b5a4",
        
          "estimated_fee": "0.00021",
          "estimated_fee_fiat": "0.20",
        
          "fee_paid": null,
          "fee_paid_fiat": null,
        
          "txid": null
        }
      ],
    
      "created_at": "2026-01-29T01:25:00Z",
      "completed_at": null
    }
    ],
    "meta": {
        "page": 1,
        "page_size": 20,
        "total": 96,
        "total_pages": 5
    }
}

Last updated