curl --request POST \
--url https://trade-api.gateway.uniswap.org/v1/lp/decrease \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"protocol": "V2",
"tokenId": 123,
"position": {
"pool": {
"token0": "<string>",
"token1": "<string>",
"fee": 123,
"tickSpacing": 123,
"hooks": "<string>"
},
"tickLower": 123,
"tickUpper": 123
},
"walletAddress": "<string>",
"chainId": 1,
"liquidityPercentageToDecrease": 123,
"liquidity0": "<string>",
"liquidity1": "<string>",
"slippageTolerance": 123,
"poolLiquidity": "<string>",
"currentTick": 123,
"sqrtRatioX96": "<string>",
"positionLiquidity": "<string>",
"expectedTokenOwed0RawAmount": "<string>",
"expectedTokenOwed1RawAmount": "<string>",
"collectAsWETH": true,
"deadline": 123,
"simulateTransaction": true
}'