Perpetuals
List Perpetuals Positions
REST API
- Introduction
- Accounts
- Convert
- Data API
- Fees
- Futures
- Orders
- Payment Methods
- Perpetuals
- Portfolios
- Products
- Public
Perpetuals
List Perpetuals Positions
Get a list of open positions in your Perpetuals portfolio
GET
/
api
/
v3
/
brokerage
/
intx
/
positions
/
{portfolio_uuid}
Copy
Ask AI
curl --request GET \
--url https://api.coinbase.com/api/v3/brokerage/intx/positions/{portfolio_uuid}
Copy
Ask AI
{
"positions": [
{
"product_id": "<string>",
"product_uuid": "<string>",
"portfolio_uuid": "<string>",
"symbol": "<string>",
"vwap": {
"value": "<string>",
"currency": "<string>"
},
"entry_vwap": {
"value": "<string>",
"currency": "<string>"
},
"position_side": "<any>",
"margin_type": "<any>",
"net_size": "<string>",
"buy_order_size": "<string>",
"sell_order_size": "<string>",
"im_contribution": "<string>",
"unrealized_pnl": {
"value": "<string>",
"currency": "<string>"
},
"mark_price": {
"value": "<string>",
"currency": "<string>"
},
"liquidation_price": {
"value": "<string>",
"currency": "<string>"
},
"leverage": "<string>",
"im_notional": {
"value": "<string>",
"currency": "<string>"
},
"mm_notional": {
"value": "<string>",
"currency": "<string>"
},
"position_notional": {
"value": "<string>",
"currency": "<string>"
},
"aggregated_pnl": {
"value": "<string>",
"currency": "<string>"
}
}
],
"summary": {
"aggregated_pnl": {
"value": "<string>",
"currency": "<string>"
}
}
}
Path Parameters
The portfolio UUID.
Response
200
application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.coinbase.com/api/v3/brokerage/intx/positions/{portfolio_uuid}
Copy
Ask AI
{
"positions": [
{
"product_id": "<string>",
"product_uuid": "<string>",
"portfolio_uuid": "<string>",
"symbol": "<string>",
"vwap": {
"value": "<string>",
"currency": "<string>"
},
"entry_vwap": {
"value": "<string>",
"currency": "<string>"
},
"position_side": "<any>",
"margin_type": "<any>",
"net_size": "<string>",
"buy_order_size": "<string>",
"sell_order_size": "<string>",
"im_contribution": "<string>",
"unrealized_pnl": {
"value": "<string>",
"currency": "<string>"
},
"mark_price": {
"value": "<string>",
"currency": "<string>"
},
"liquidation_price": {
"value": "<string>",
"currency": "<string>"
},
"leverage": "<string>",
"im_notional": {
"value": "<string>",
"currency": "<string>"
},
"mm_notional": {
"value": "<string>",
"currency": "<string>"
},
"position_notional": {
"value": "<string>",
"currency": "<string>"
},
"aggregated_pnl": {
"value": "<string>",
"currency": "<string>"
}
}
],
"summary": {
"aggregated_pnl": {
"value": "<string>",
"currency": "<string>"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.