Skip to content
Alchemy Logo

Spot-pair deployment auction status

This API is in private preview. Target October 2026; timing is subject to change.

Returns the current spot-pair deployment auction state.

Available now. This read is served at the interim endpoint today.

POST /{apiKey}/info

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

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": 1755468000,
  "durationSeconds": 111600,
  "startGas": "500.0",
  "currentGas": "500.0",
  "endGas": null
}
Was this page helpful?