Skip to main content
GET
/
v0
/
wallet
/
transaction
/
{transactionId}
Get Transaction
curl --request GET \
  --url https://api-bluvo.com/v0/wallet/transaction/{transactionId} \
  --header 'x-bluvo-api-key: <api-key>' \
  --header 'x-bluvo-org-id: <api-key>' \
  --header 'x-bluvo-project-id: <api-key>'
{
  "id": "tx_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
  "walletId": "wallet_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
  "createdAt": 1713897600000,
  "updatedAt": 1713897600000,
  "timestamp": 1713897600000,
  "type": "withdrawal",
  "amount": 0.1,
  "currency": "BTC",
  "direction": "out",
  "feeCost": 0.0001,
  "feeCurrency": "BTC",
  "amountInFiat": 9650.5,
  "feeInFiat": 9.65,
  "fiatCurrency": "USD",
  "status": "ok",
  "addressTo": "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq",
  "network": "bitcoin",
  "addressFrom": null
}

Authorizations

x-bluvo-api-key
string
header
required

Bluvo API Key

x-bluvo-org-id
string
header
required

Bluvo Organization ID

x-bluvo-project-id
string
header
required

Bluvo Project ID

Path Parameters

transactionId
string
required

The transaction ID

Response

Successful response

id
string
required
walletId
string
required
type
enum<string>
required
Available options:
deposit,
withdrawal,
transaction
amount
number
required
currency
string
required
status
enum<string>
required
Available options:
pending,
ok,
failed,
canceled
createdAt
updatedAt
timestamp
direction
enum<string> | null
Available options:
in,
out,
null
feeCost
number | null
feeCurrency
string | null
amountInFiat
number | null
feeInFiat
number | null
fiatCurrency
enum<string> | null
Available options:
USD,
EUR,
null
addressTo
string | null
address
string | null
network
string | null
addressFrom
string | null
hash
string | null
contractAddress
string | null
tag
string | null
exchange
string | null
rawResponse
any