Skip to main content
GET
/
api
/
v1
/
balance
/
transaction
/
status
/
{quote_id}
Get transaction status
curl --request GET \
  --url https://api.hevn.finance/api/v1/balance/transaction/status/{quote_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "quoteId": "<string>",
  "type": "<string>",
  "paymentChannel": "<string>",
  "status": "<string>",
  "fromAmount": 123,
  "fromCurrency": "<string>",
  "toCurrency": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "toAmount": 123,
  "originTxHash": "<string>",
  "destinationTxHash": "<string>",
  "depositAddress": "<string>",
  "errorMessage": "<string>",
  "expiresAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
default:Bearer <token>
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-key
string | null

Path Parameters

quote_id
string
required

Response

Successful Response

Universal transaction response.

id
string<uuid>
required
quoteId
string
required
type
string
required
paymentChannel
string
required
status
string
required
fromAmount
number
required
fromCurrency
string
required
toCurrency
string
required
createdAt
string<date-time>
required
toAmount
number | null
originTxHash
string | null
destinationTxHash
string | null
depositAddress
string | null
errorMessage
string | null
expiresAt
string<date-time> | null