Skip to main content
GET
/
api
/
v1
/
portfolios
/
{portfolio}
/
position-limits
Get the total open position limit the portfolio
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/portfolios/{portfolio}/position-limits \
  --header 'CB-ACCESS-KEY: <api-key>' \
  --header 'CB-ACCESS-PASSPHRASE: <api-key>' \
  --header 'CB-ACCESS-SIGN: <api-key>' \
  --header 'CB-ACCESS-TIMESTAMP: <api-key>'
{
  "total_open_position_notional_limit": 2250000000,
  "total_open_position_notional_limit_enforced": true
}
  • TS/JS
const portfoliosService = new PortfoliosService(client);

portfoliosService.listOpenPositionLimits({
    portfolio: 'PORTFOLIO_ID_HERE',
}).then(async (response) => {
    console.log('Position Limits: ', response);
})
For more information, please visit the INTX TS 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

portfolio
string
required

Response

total_open_position_notional_limit
string<number>
Example:
total_open_position_notional_limit_enforced
boolean