BOB Gateway

Get user orders (v3 — amounts carry USD).

GET
/v3/get-orders/{user_address}
AuthorizationBearer <token>

In: header

Path Parameters

user_address*string

User address

Query Parameters

cursor?string

Cursor used to fetch the next page, obtained from the response's next_cursor.

limit?integer

Number of orders to request

Range1 <= value

Response Body

application/json

application/json

curl -X GET "https://example.com/v3/get-orders/string"
{  "nextCursor": "string",  "orders": [    {      "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    }  ]}