# Perpetual deployment auction status

> HyperCore private-preview documentation.

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

<Callout intent="info">
  This API is in private preview. Target October 2026; timing is subject to change.
</Callout>


# Perpetual deployment auction status

Returns the current perpetual deployment auction state.


<Note>

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

</Note>

## Request

`POST /{apiKey}/info`

| Parameter | Type   | Required | Description                        |
| --------- | ------ | -------- | ---------------------------------- |
| `type`    | string | Yes      | Selects `perpDeployAuctionStatus`. |

```json
{
  "type": "perpDeployAuctionStatus"
}
```

## Response fields

| 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.  |

## Response example

```json
{
  "startTimeSeconds": 1747656000,
  "durationSeconds": 111600,
  "startGas": "500.0",
  "currentGas": "500.0",
  "endGas": null
}
```