v1
latestOpenAPI 3.0.02026-07-26117198177.4 KBAccount Connections
Get a single connection transaction by id
Fetches one persisted connection transaction by its transaction id (the transaction_id field returned by the list endpoints), scoped to the caller workspace.
get/v2/account-connections/transactions/{transactionId}
Path parameters
transactionIdstring required
Response
Example response
{
"id": "0x9a3f...",
"transaction_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"account_id": "acc_abc123",
"kind": "TRADE",
"status": "CONFIRMED",
"timestamp": "2026-01-15T10:00:00.000Z",
"hash": "0xabc...",
"network": "networks/ethereum-mainnet",
"block_number": "21000000",
"usd_amount": "250.50",
"transfers": [
{
"direction": "IN",
"asset": "USDC",
"amount": "100.50",
"usd_amount": "9.831",
"source_address": "0xabc...",
"destination_address": "0xdef..."
}
],
"trade": {
"side": "BUY",
"base_asset": "BTC",
"base_amount": "0.01",
"quote_asset": "USDC",
"quote_amount": "500.0",
"price": "50000.0",
"fee": "0.45",
"fee_asset": "USDC",
"realized_pnl": "25.11"
},
"category": "Payroll",
"raw": {}
}