Stake into an Arbitrage product
pionex_earn_arbitrage_stakeSubscribes a specified USDT or USDC amount to a Pionex Term Arbitrage product using its product ID, requiring Earn permission.
Instructions
Stake into an Arbitrage product
Subscribes to 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": {
"request_id": "req-abcdef",
"status": "success",
"txid": "tx-123456"
},
"timestamp": 1774959429596
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coin | Yes | Subscription currency. Only `USDT` or `USDC` are supported. | |
| amount | Yes | Subscription amount as a decimal string | |
| productId | Yes | Product ID. Must exist in the product list from `/api/v1/earn/arbitrage/fetchProducts`. |