Skip to main content
GET
/
api
/
v1
/
transfers
/
{transfer_uuid}
Get transfer
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/transfers/{transfer_uuid} \
  --header 'CB-ACCESS-KEY: <api-key>' \
  --header 'CB-ACCESS-PASSPHRASE: <api-key>' \
  --header 'CB-ACCESS-SIGN: <api-key>' \
  --header 'CB-ACCESS-TIMESTAMP: <api-key>'
{
  "transfer_uuid": "7975e6ab-57ed-4751-b359-13f63f4da793",
  "transfer_type": "DEPOSIT",
  "amount": 5100.5,
  "asset": "USDC",
  "status": "PROCESSED",
  "network_name": "ethereum",
  "created_at": "2023-01-29T14:32:28.000Z",
  "updated_at": "2023-01-29T14:32:28.000Z",
  "from_portfolio": {
    "id": "14thr7ft-1-0",
    "uuid": "7975e6ab-57ed-4751-b359-13f63f4da793",
    "name": "portfolio1"
  },
  "to_portfolio": {
    "id": "14thr7ft-1-0",
    "uuid": "7975e6ab-57ed-4751-b359-13f63f4da793",
    "name": "portfolio1"
  },
  "from_address": 2.3877037891079577e+47,
  "to_address": 2.3877037891079577e+47,
  "from_cb_account": "64ac90a106d1db7863f9ab7d",
  "to_cb_account": "64ac90a106d1db7863f9ab7d",
  "from_counterparty_id": "CBTQDGENHE",
  "to_counterparty_id": "CBA6POFJW7",
  "instrument_id": 2562519737567269,
  "instrument_symbol": "BTC-PERP",
  "txn_hash": "Z3dQkmcWeuQxHKFPfsQs8QA8Jq9PFWr5yCwUjhQKcX5o99q3BmnyFfqZGNqRg9CWY9xV6QDBdDA9pH3AM6Ajpaq",
  "position_id": "14thr7ft-1-0"
}
  • Java
  • .NET
  • Go
  • Python
  • TS/JS
  • CLI
TransfersService transfersService = IntxServiceFactory.createTransfersService(client);
GetTransferRequest request = new GetTransferRequest.Builder()
    .transferUuid("transfer_uuid")
    .build();
GetTransferResponse response = transfersService.getTransfer(request);
For more information, please visit the INTX Java SDK.

Authorizations

CB-ACCESS-KEY
string
header
required
CB-ACCESS-PASSPHRASE
string
header
required
CB-ACCESS-SIGN
string
header
required
CB-ACCESS-TIMESTAMP
string
header
required

Path Parameters

transfer_uuid
string<uuid>
required

Response

transfer_uuid
string<uuid>
Example:
transfer_type
enum<string>
Available options:
DEPOSIT,
WITHDRAW,
STIPEND,
INTERNAL,
FUNDING,
ALL,
LOAN_ACQUIRE,
LOAN_REPAY,
LOAN_INTEREST_CHARGE,
REAL_TIME_SETTLEMENT,
ALL_LOANS,
LIQUIDATION_EQUITY_CLAWBACK
Example:
amount
string
Example:
asset
string
Example:
status
enum<string>
Available options:
PROCESSED,
NEW,
FAILED,
STARTED
Example:
network_name
string
Example:
created_at
string<date-time>
Example:
updated_at
string<date-time>
Example:
from_portfolio
object
to_portfolio
object
from_address
string
Example:
to_address
string
Example:
from_cb_account
string
Example:
to_cb_account
string
Example:
from_counterparty_id
string
Example:
to_counterparty_id
string
Example:
instrument_id
string
Example:
instrument_symbol
string
Example:
txn_hash
string
Example:
position_id
string
Example: