Portfolios
Move Portfolio Funds
REST API
- Introduction
- Accounts
- Convert
- Data API
- Fees
- Futures
- Orders
- Payment Methods
- Perpetuals
- Portfolios
- Products
- Public
Portfolios
Move Portfolio Funds
Move funds between portfolios.
POST
/
api
/
v3
/
brokerage
/
portfolios
/
move_funds
Copy
Ask AI
curl --request POST \
--url https://api.coinbase.com/api/v3/brokerage/portfolios/move_funds \
--header 'Content-Type: application/json' \
--data '{
"funds": {
"value": "<string>",
"currency": "<string>"
},
"source_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"target_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe"
}'
Copy
Ask AI
{
"source_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"target_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe"
}
Body
application/json
Response
200
application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.coinbase.com/api/v3/brokerage/portfolios/move_funds \
--header 'Content-Type: application/json' \
--data '{
"funds": {
"value": "<string>",
"currency": "<string>"
},
"source_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"target_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe"
}'
Copy
Ask AI
{
"source_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"target_portfolio_uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe"
}
Assistant
Responses are generated using AI and may contain mistakes.