BOB Gateway

Get an order by id (v3 — amounts carry USD).

GET
/v3/get-order/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Order identifier: order_id, source Bitcoin txid, or source EVM tx hash

Response Body

application/json

application/json

curl -X GET "https://example.com/v3/get-order/string"
{  "depositAddress": "string",  "dstInfo": {    "amount": "string",    "chain": "string",    "token": "string",    "usd": "string"  },  "estimatedTimeInSecs": 0,  "id": "string",  "srcInfo": {    "amount": "string",    "chain": "string",    "token": "string",    "txHash": "string",    "usd": "string"  },  "status": {    "inProgress": {      "pending_btc_payment": null,      "refund_tx": null    }  },  "timestamp": 0}