Get Exchange
It is use to get your order using order_id
Api Type: Get
Required Parameter:
In the header:
x-api-key
: enter your API key for authentication.
In body:
order_id
: You received your order ID when creating an exchange.
Order Status:
waiting
verifying
confirming
exchanging
sending
blacklist
refunded
finished
expired
failed
API Link: https://secureshift.io/api/v2/get-exchange
API Response
{
"status": 200,
"data": {
"order_id": "67a9c5143e0c7",
"type": "floating",
"currency_from": "btc",
"currency_to": "eth",
"amount_from": 0.0025,
"amount_to": 0.08940924,
"expected_amount": 0.0025,
"rate": 0,
"address_from": "bc1q8wfhzvn5wh6u6q8jqvjqnvnaqyw8e79wy3wkhy",
"address_to": "0x00000000219ab540356cBB839Cbe05303d7705Fa",
"user_deposit_address": null,
"extra_id_from": null,
"extra_id_to": null,
"user_refund_address": null,
"user_refund_extra_id": null,
"tx_from": null,
"tx_to": null,
"locale": "en",
"status": "finished",
"order_at": "2025-02-10T09:21:25.000000Z",
"expired_at": null
}
}
Last updated