GET
/
history
/
bridge
/
{bridgeId}
curl --request GET \
  --url https://api.rhino.fi/bridge/history/bridge/{bridgeId} \
  --header 'authorization: <api-key>'
{
  "state": "PENDING",
  "_id": "<string>",
  "token": "<string>",
  "chainIn": "<string>",
  "chainOut": "<string>",
  "amountIn": "<string>",
  "amountInUsd": 123,
  "amountOut": "<string>",
  "amountOutUsd": 123,
  "amountNative": "<string>",
  "amountNativeUsd": 123,
  "usdPrice": 123,
  "fee": "<string>",
  "feeUsd": 123,
  "gasFee": "<string>",
  "gasFeeUsd": 123,
  "platformFee": "<string>",
  "platformFeeUsd": 123,
  "percentageFee": "<string>",
  "percentageFeeUsd": 123,
  "recipient": "<string>",
  "depositor": "<string>",
  "createdAt": "<string>",
  "commitmentDate": "<string>"
}

Authorizations

authorization
string
header
required

Path Parameters

bridgeId
string
required

Response

200
application/json
Success
state
enum<string>
required
Available options:
PENDING
_id
string
required
token
string
required
chainIn
string
required
chainOut
string
required
amountIn
string
required

a string that will be parsed into a BigDecimal

amountInUsd
number
required

a number that will be parsed into a BigDecimal

amountOut
string
required

a string that will be parsed into a BigDecimal

amountOutUsd
number
required

a number that will be parsed into a BigDecimal

amountNative
string
required

a string that will be parsed into a BigDecimal

amountNativeUsd
number
required

a number that will be parsed into a BigDecimal

usdPrice
number
required

a number that will be parsed into a BigDecimal

fee
string
required

a string that will be parsed into a BigDecimal

feeUsd
number
required

a number that will be parsed into a BigDecimal

gasFee
string
required

a string that will be parsed into a BigDecimal

gasFeeUsd
number
required

a number that will be parsed into a BigDecimal

platformFee
string
required

a string that will be parsed into a BigDecimal

platformFeeUsd
number
required

a number that will be parsed into a BigDecimal

percentageFee
string
required

a string that will be parsed into a BigDecimal

percentageFeeUsd
number
required

a number that will be parsed into a BigDecimal

recipient
string
required
depositor
string
required
createdAt
string
required

a string that will be parsed into a Date

commitmentDate
string
required

a string that will be parsed into a Date