> For the complete documentation index, see [llms.txt](https://doc.secureshift.io/developement-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.secureshift.io/developement-apis/get-exchange.md).

# Get Exchange

Api Type: Get\
\
Required Parameter:\
&#x20;            In the header: \
&#x20;                       `x-api-key`: enter your API key for authentication.\
&#x20;            In body: \
&#x20;                        `order_id` : You received your order ID when creating an exchange.\
Order Status:\
&#x20;            `waiting`\
&#x20;            `verifying`\
&#x20;            `confirming`\
&#x20;            `exchanging`\
&#x20;            `sending`\
&#x20;            `blacklist`\
&#x20;            `refunded` \
&#x20;            `finished`\
&#x20;            `expired`\
&#x20;            `failed`\
\
API Link:  <https://secureshift.io/api/v2/get-exchange>

API Response

```json
{
    "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
    }
}
```
