Skip to main content
GET
/
api
/
v1
/
portfolios
/
{portfolio}
/
position-limits
/
positions
List the open position limits for all instruments
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/portfolios/{portfolio}/position-limits/positions \
  --header 'CB-ACCESS-KEY: <api-key>' \
  --header 'CB-ACCESS-PASSPHRASE: <api-key>' \
  --header 'CB-ACCESS-SIGN: <api-key>' \
  --header 'CB-ACCESS-TIMESTAMP: <api-key>'
[
  {
    "symbol": "BTC-PERP",
    "instrument_id": "14thr7ft-1-0",
    "instrument_uuid": "8ca6c040-48df-426b-bb4e-74413909da26",
    "open_position_notional_limit": 250000000
  }
]
  • TS/JS
const portfoliosService = new PortfoliosService(client);

portfoliosService.getInstrumentPositionLimit({
    portfolio: 'PORTFOLIO_ID_HERE',
    instrument: 'ETH',
}).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

symbol
string
Example:
instrument_id
string
Example:
instrument_uuid
string<uuid>
Example:
open_position_notional_limit
string<number>
Example: