Skip to content
Alchemy Logo

Perpetual deployment auction status

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

ParameterTypeRequiredDescription
typestringYesSelects perpDeployAuctionStatus.
{
  "type": "perpDeployAuctionStatus"
}

FieldTypeDescription
startTimeSecondsintegerUnix time in seconds when the auction starts.
durationSecondsintegerLength of the auction window in seconds.
startGasstringOpening auction gas price in HYPE.
currentGasstring | nullCurrent auction gas price, or null before it is available.
endGasstring | nullAuction end gas price, or null while the auction is open.

{
  "startTimeSeconds": 1747656000,
  "durationSeconds": 111600,
  "startGas": "500.0",
  "currentGas": "500.0",
  "endGas": null
}
Was this page helpful?