This API is in private preview. Target October 2026; timing is subject to change.
Returns the current perpetual deployment auction state.
Available now. This read is served at the interim endpoint today.
POST /{apiKey}/info
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Selects perpDeployAuctionStatus. |
{
"type": "perpDeployAuctionStatus"
}| Field | Type | Description |
|---|---|---|
startTimeSeconds | integer | Unix time in seconds when the auction starts. |
durationSeconds | integer | Length of the auction window in seconds. |
startGas | string | Opening auction gas price in HYPE. |
currentGas | string | null | Current auction gas price, or null before it is available. |
endGas | string | null | Auction end gas price, or null while the auction is open. |
{
"startTimeSeconds": 1747656000,
"durationSeconds": 111600,
"startGas": "500.0",
"currentGas": "500.0",
"endGas": null
}