Skip to main content
GET
/
v0
/
transactions
/
{transaction_id}
Get transaction details
curl --request GET \
  --url https://api.sumvin.com/v0/transactions/{transaction_id}
{
  "_links": {
    "self": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "wallet": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "asset": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    }
  },
  "id": "<string>",
  "type": "<string>",
  "status": "<string>",
  "direction": "<string>",
  "amount": "<string>",
  "asset": {
    "symbol": "<string>",
    "name": "<string>",
    "asset_type": "<string>",
    "decimals": 123,
    "chain_id": 123,
    "contract_address": "<string>"
  },
  "created_at": 123,
  "updated_at": 123,
  "source": "<string>",
  "wallet": {
    "id": "<string>",
    "address": "<string>",
    "chain_id": 123,
    "is_primary": true,
    "is_eoa": true
  },
  "account": {
    "id": "<string>",
    "provider": "<string>",
    "account_type": "<string>",
    "institution_name": "<string>",
    "account_name": "<string>",
    "account_mask": "<string>",
    "nickname": "<string>"
  },
  "card": {
    "last_four": "<string>",
    "brand": "<string>",
    "card_type": "<string>"
  },
  "tx_hash": "<string>",
  "merchant_name": "<string>",
  "merchant_logo_url": "<string>",
  "merchant_category_code": "<string>",
  "category": "<string>",
  "processor_reference": "<string>",
  "has_receipt": false
}

Headers

x-juno-orgid
string | null

Tenant org ID for multi-tenant auth

x-sumvin-token
string | null
x-juno-jwt
string | null
x-sumvin-pint-token
string | null

Path Parameters

transaction_id
string
required

Response

Transaction retrieved successfully

Detailed transaction response with full entity data.

HAL-style hypermedia links for navigation.

id
string
required

Unique transaction identifier

type
string
required

Transaction type (deposit, withdrawal, card_purchase, etc.)

status
string
required

Transaction status (pending, processing, completed, failed)

direction
string
required

Fund flow direction relative to user (in, out)

amount
string
required

Transaction amount in asset's base units

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
asset
AssetData · object
required

Asset involved in the transaction

created_at
integer
required

Transaction creation timestamp (epoch ms)

updated_at
integer
required

Last update timestamp (epoch ms)

source
string | null

Funding source (crypto_wallet, bank_account, card)

wallet
WalletDataBase · object

Wallet for crypto transactions

account
AccountData · object

Bank account for bank transactions

card
CardData · object

Card for card transactions

tx_hash
string | null

On-chain transaction hash (crypto only)

merchant_name
string | null

Merchant name (card/bank transactions)

merchant_logo_url
string | null
merchant_category_code
string | null

4-digit ISO 18245 merchant category code

category
string | null

Spending category (restaurants, groceries, etc.)

processor_reference
string | null

External processor transaction reference

has_receipt
boolean
default:false

Whether this transaction has an attached receipt