Coinbase International Exchange API
cURL
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 } ]
Retrieves position limits for all positions a given portfolio currently has or has opened in the past.
const portfoliosService = new PortfoliosService(client); portfoliosService.getInstrumentPositionLimit({ portfolio: 'PORTFOLIO_ID_HERE', instrument: 'ETH', }).then(async (response) => { console.log('Position Limits: ', response); })
Was this page helpful?