Details

This service can be called to get the details of a specific exchange. You can only view the details of an exchange for which you are the seller. You will need to provide the Reference Id of the exchange you wish to view.

Inputs

Variable Description
Merchant ID merchant_id Your unique merchant id. This can be found under your Account Settings.
Reference Id reference_id The Reference Id of the exchange you want to view. This should have been provided in the response from the Sell query.
Hash Value hash_value The resulting hash of your input arguments and your API Key.

Example Input

https://exchange.nekbit.com/api/v1/details/?merchant_id=10366344-5C8C-4E69-B12E-DF252667E2CD&reference_id=67bd0643ed6c38de7c3694a65e905f17&hash_value=0000e63fb0517d47f00c5bd22db6c7a1

Outputs

Variable Description
Type type Indicates either success or error.
Data data Contains variables unique to this query type.
Timestamp timestamp The current date/time UTC.
Status status The current status of the exchange.
Currency currency The currency code of this exchange.
Cryptocurrency cryptocurrency The cryptocurrency code of this exchange.
Minimum Sell Rate min_sell_rate The finalized settlement may go below the initial estimate as exchange rates fluctuate. The system will automatically require an approval before beginning the trade if the finalized rate falls below this value.
Crypto Amount Sent crypto_amount_sent The amount of cryptocurrency the seller has committed to sell.
Crypto Amount Received crypto_amount_received The amount of cryptocurrency that was received in the system's wallet.
Confirmation Count confirmation_count The amount of confirmations detected for the transaction that sent the cryptocurrency to the system's wallet.
Initial Rate initial_rate The exchange rate between the currency and cryptocurrency at the time the exchange was created.
Finalized Rate finalized_rate The exchange rate between the currency and cryptocurrency at the time the exchange was confirmed.
Initial Settlement Value initial_settlement_value The estimated settlement value of the exchange at the time the exchange was created.
Finalized Settlement Value finalized_settlement_value The finalized settlement value of the exchange at the time the exchange was confirmed.
Created Date created_at The datetime that the exchange was created.
Completed Date completed_at The datetime that the exchange was completed.
Cancelled Date cancelled_at The datetime that the exchange was cancelled.

Example Output

{
    "type": "success",
    "data": {
        "status": "Completed",
        "currency": "CAD",
        "cryptocurrency": "BTC",
        "min_sell_rate": "6,700.00",
        "crypto_amount_sent": "5",
        "crypto_amount_received": "5",
        "confirmation_count": 1,
        "initial_rate": "6715.46",
        "finalized_rate": "6764.65",
        "initial_settlement_value": "33577.32",
        "finalized_settlement_value": "33823.25",
        "created_at": "2019-05-23 20:32:59",
        "completed_at": "2019-05-29 21:35:53",
        "cancelled_at": null
    },
    "timestamp": "2018-12-21 15:26:36"
}