Coinbase International Exchange API
cURL
curl --request GET \ --url https://api.international.coinbase.com/api/v1/portfolios/{portfolio}/position-limits/positions/{instrument} \ --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 the position limits for a given portfolio and symbol.
const portfoliosService = new PortfoliosService(client); portfoliosService.getInstrumentPositionLimit({ portfolio: 'PORTFOLIO_ID_HERE', instrument: 'ETH-PERP', }).then(async (response) => { console.log('Instrument Position Limits: ', response); })
Was this page helpful?