Transaction Status

This endpoint returns a unified transfer object for both native coin transfers and token transfers. All responses follow the same JSON schema, regardless of blockchain.

Transaction Status

POST https://api-processing.crypto-chief.com/v1/blockchain/transaction/status

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

chain

true

Blockchain chain identifier where the transaction was executed.

hash

string

true

Unique transaction hash in the blockchain. Used to fetch the transaction status and unified transfer data.

Response

[
    {
        "chain": "BSC_TESTNET",
        "contract": "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06",
        "from": "0xA535d511C0CAcf9632F5469fBb61812963b84300",
        "to": "0x1f33f99676b65968885adDFaFda3a736424d93C9",
        "tx_hash": "0xf599b3dc71deee519459ac8f05513a2351f43515e324e412375d57bf6aaee41a",
        "block_number": 79235000,
        "value": "10000000000000000",
        "human_value": "0.010000000000000000",
        "decimals": 18,
        "type": "token",
        "fee": "104082000000000",
        "human_fee": "0.000104082000000000",
        "confirmations": 7048128
    }
]

Last updated