Get Internal Transfers
Get settled internal transfer history for the authenticated account. Returns both inbound and outbound transfers.
get/v1/account/internal-transfers
Query parameters
start_timestampinteger
Start timestamp in milliseconds
Example:1767225600000
end_timestampinteger
End timestamp in milliseconds
Example:1767229200000
Response
Internal transfer history response.
Example response
{
"data": [
{
"asset": "USDC",
"amount": "100000000",
"counterparty": "0x1234567890abcdef1234567890abcdef12345678",
"label": "trading-bot",
"created_timestamp": 1767225600000
}
]
}