PayIn Information

To retrieve payment information, you can use either the invoice UUID provided by our system.

Retrieving payment information using the UUID

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

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

uuid

string

true

Invoice UUID

Response

{
    "type": "PayIn",
    "uuid": "427b3b06-24dc-4e8b-a716-952b6acec72c",
    "order_id": "ord-crypto-111111",
    "user_id": "user-777",
    "mode": "fiat",
    "is_test": true,
    "status": "cancel",
    "lifetime": 1800,
    "expired_at": "2026-01-25T14:14:34.830722Z",
    "is_expired": false,
    "can_cancel": false,
    "amount_fiat": "100.00",
    "currency": "USD",
    "amount_crypto": null,
    "fact_amount_fiat": null,
    "fact_amount_crypto": null,
    "accuracy_payment_percent": 5,
    "to_address": null,
    "memo": null,
    "from_address": null,
    "txid": null,
    "coins": [
        {
            "chain_family": "EVM",
            "coin": "ETH",
            "contract": "",
            "network": "ETH_SEPOLIA"
        },
        {
            "chain_family": "EVM",
            "coin": "ETH",
            "contract": "",
            "network": "ARBITRUM_SEPOLIA"
        },
        {
            "chain_family": "EVM",
            "coin": "MATIC",
            "contract": "",
            "network": "POLYGON_AMOY"
        },
        {
            "chain_family": "SOLANA",
            "coin": "SOL",
            "contract": "",
            "network": "SOLANA_DEVNET"
        },
        {
            "chain_family": "EVM",
            "coin": "BNB",
            "contract": "",
            "network": "BSC_TESTNET"
        }
    ],
    "has_choices": true,
    "url_success": null,
    "url_error": null,
    "url_callback": null,
    "confirmations": 0,
    "required_confirmations": 0,
    "paid_at": null,
    "confirmed_at": null,
    "additional_data": null,
    "created_at": "2026-01-25T13:44:34.850313Z",
    "payment_link": "https://crypto-terminal.crypto-chief.com/pay/427b3b06-24dc-4e8b-a716-952b6acec72c",
    "payment_coin": null,
    "payment_network": null,
    "convert": {
        "auto_convert": false,
        "coin": null,
        "convert_coin": null,
        "convert_network": null,
        "course_source": "any",
        "network": null,
        "rate": null
    }
}

Last updated