Redeem from an Arbitrage product
pionex_earn_arbitrage_un_stakeRedeem funds from a Pionex Term Arbitrage product by specifying product ID, coin (USDT or USDC), and amount. Requires Earn permission.
Instructions
Redeem from an Arbitrage product
Redeems from a Term Arbitrage product. Requires Earn permission. Weight: 1.
Validation:
amountmust be a valid decimal amount.productIdmust exist in the product list returned byGET /api/v1/earn/arbitrage/fetchProducts.coinmust be one ofUSDTorUSDC.
Example request body:
{
"productId": "ARB-USDT-30D",
"coin": "USDT",
"amount": "100"
}Example response:
{
"result": true,
"data": {
"status": "success"
},
"timestamp": 1774959429596
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coin | Yes | Redemption currency. Only `USDT` or `USDC` are supported. | |
| amount | Yes | Redemption amount as a decimal string | |
| productId | Yes | Product ID. Must exist in the product list from `/api/v1/earn/arbitrage/fetchProducts`. |