Skip to main content
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>",
      "sender": "<string>",
      "txHash": "<string>",
      "originalErrorTag": "<string>",
      "_tag": "failed"
    }
  ]
}

Authorizations

authorization
string
header
required

Path Parameters

depositAddress
string
required
depositChain
string
required

Query Parameters

from
string

Start date for the history query, in milliseconds since epoch or Date.parse compatible string. Optional, defaults to 7 days ago. Max window is 31 days

to
string

Start date for the history query, in milliseconds since epoch or Date.parse compatible string. Optional, defaults to 7 days ago. Max window is 31 days

Response

DepositAddressHistoryResponse

depositAddress
string
required

a non empty string

Minimum length: 1
depositChain
string
required

a non empty string

Minimum length: 1
bridges
object[]
required
  • Option 1
  • Option 2
  • Option 3