GET
/
v0
/
cex
/
cex
/
wallet
/
{walletId}
/
transactions
curl --request GET \
  --url https://api-bluvo.com/v0/cex/cex/wallet/{walletId}/transactions \
  --header 'x-bluvo-api-key: <api-key>' \
  --header 'x-bluvo-org-id: <api-key>'
{
  "transactions": [
    {
      "id": "tx_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
      "walletId": "wallet_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
      "asset": "BTC",
      "type": "withdrawal",
      "amount": 0.1,
      "timestamp": 1713897600000,
      "status": "completed",
      "txid": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
      "address": "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq",
      "feeCost": 0.0001,
      "feeCurrency": "BTC"
    },
    {
      "id": "tx_02G8Y4Z8M6W3LK5H7P7RS6T4Z3",
      "walletId": "wallet_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
      "asset": "ETH",
      "type": "deposit",
      "amount": 1.5,
      "timestamp": 1713897000000,
      "status": "completed",
      "txid": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
      "address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
      "feeCost": 0.005,
      "feeCurrency": "ETH"
    }
  ],
  "pagination": {
    "totalCount": 25,
    "page": 0,
    "limit": 10,
    "pageCount": 3
  }
}

Authorizations

x-bluvo-api-key
string
header
required

Bluvo API Key

x-bluvo-org-id
string
header
required

Bluvo Organization ID

Path Parameters

walletId
string
required

The unique identifier of the connected wallet to query transactions for.

Query Parameters

page
number

Optional. Page number for pagination (0-indexed). Defaults to 0.

Required range: 0 <= x <= 1000
limit
number

Optional. Maximum number of transactions to return per page. Defaults to 10. Maximum value is 1000.

Required range: 1 <= x <= 1000
asset
string

Optional. Filter transactions by asset symbol.

type
string

Optional. Filter transactions by type (e.g., 'deposit', 'withdrawal').

since
string

Optional. Filter transactions created on or after this date (ISO format).

before
string

Optional. Filter transactions created before this date (ISO format).

status
string

Optional. Filter transactions by status (e.g., 'completed', 'pending').

fields
string

Optional. Comma-separated list of fields to include in the response. If not specified, all fields are included.

Response

200 - application/json

Successful response

The response is of type object.