GET
/
api
/
v1
/
position-offsets
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/position-offsets
{
  "position_offsets": [
    {
      "primary_instrument_id": "14thr7ft-1-0",
      "secondary_instrument_id": "31bpa1qz-1-1",
      "offset": 0.02
    }
  ]
}
const positionOffsetsService = new PositionOffsetsService(client);

positionOffsetsService.listPositionOffsets().then(async (response) => {
    console.log('Position Offsets: ', response);
})

For more information, please visit the INTX TS SDK.

Response

200 - application/json

Position offsets list

The response is of type object.