GET
/
history
/
user
curl --request GET \
  --url https://api.rhino.fi/bridge/history/user \
  --header 'authorization: <api-key>'
{
  "totalItems": 123,
  "items": [
    {
      "bridge": {
        "state": "PENDING",
        "_id": "<string>",
        "chainIn": "<string>",
        "chainOut": "<string>",
        "amountIn": "<string>",
        "amountInUsd": 123,
        "amountOut": "<string>",
        "amountOutUsd": 123,
        "amountNative": "<string>",
        "amountNativeUsd": 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>",
        "token": "<string>",
        "usdPrice": 123,
        "_tag": "bridge"
      },
      "rejections": [
        {
          "depositTxHash": "<string>",
          "depositCommittedAt": "<string>",
          "reason": "<string>"
        }
      ]
    }
  ]
}

Authorizations

authorization
string
header
required

Query Parameters

page
string
required

a string to be decoded into a number

limit
string
required

a string to be decoded into a number

sortBy
string
required
sortDirection
enum<string>
required
Available options:
asc,
desc
state
enum<string>
Available options:
PENDING,
ACCEPTED,
EXECUTED

Response

200
application/json

Success

The response is of type object.