Get historical delivery prices
pionex_earn_delivery_pricesRetrieve historical settlement delivery prices for a Dual Investment pair to determine payout direction at expiry. Filter by base currency and optional quote.
Instructions
Get historical delivery prices
Returns historical settlement delivery prices for a Dual Investment pair. Weight: 1.
The delivery price is the index price recorded at the exact moment of each product's expiry, used to determine the settlement direction (base or quote currency payout).
base is required. quote is optional but recommended to narrow results — use USDXO for BTC/ETH pairs and USDT for all other base currencies.
Example request (BTC/USDXO):
GET /api/v1/earn/dual/deliveryPrices?base=BTC"e=USDXOExample request (XRP/USDT):
GET /api/v1/earn/dual/deliveryPrices?base=XRP"e=USDTExample response:
{
"result": true,
"data": {
"prices": [
{
"delivery": "69142.6",
"date": "2026-04-01",
"deliveryTime": 1775030400000
}
]
},
"timestamp": 1775026529937
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | Base currency (e.g. `BTC`, `XRP`) | |
| quote | No | Quote currency filter. Use `USDXO` for BTC/ETH pairs; use `USDT` for all other base currencies. | |
| endTime | No | End timestamp in milliseconds | |
| startTime | No | Start timestamp in milliseconds |