v2

latestOpenAPI 3.0.3Apache 2.02026-07-3149289180.2 KB

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.

moreboolean required

More data available

Example response

{
  "data": [
    {
      "asset": "USDC",
      "amount": "100000000",
      "counterparty": "0x1234567890abcdef1234567890abcdef12345678",
      "label": "trading-bot",
      "created_timestamp": 1767225600000
    }
  ]
}