GET
/
deposit-addresses
/
{depositAddress}
/
{depositChain}
/
history
Get deposit address history
curl --request GET \
  --url https://api.rhino.fi/bridge/deposit-addresses/{depositAddress}/{depositChain}/history \
  --header 'authorization: <api-key>'
{
  "depositAddress": "<string>",
  "depositChain": "<string>",
  "bridges": [
    {
      "_id": "<string>",
      "tokenSymbol": "<string>",
      "tokenAddress": "<string>",
      "amount": "<string>",
      "amountUsd": 123,
      "amountWei": "<string>",
      "originalErrorTag": "<string>",
      "_tag": "failed"
    }
  ]
}

Authorizations

authorization
string
header
required

Path Parameters

depositAddress
string
required
depositChain
string
required

Query Parameters

from
string

a string to be decoded into a DateTime.Utc

to
string

a string to be decoded into a DateTime.Utc

Response

200
application/json

DepositAddressHistoryResponse

The response is of type object.