> ## Documentation Index
> Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# perpDeployAuctionStatus | Hyperliquid Info API

> Hyperliquid perpDeployAuctionStatus: fetch the current perp-deploy Dutch-auction status.

<CardGroup cols={2}>
  <Card title="Credit Cost"> 1 per call</Card>
  <Card title="Processing"> Realtime</Card>
</CardGroup>

The Hyperliquid info endpoint with `type: "perpDeployAuctionStatus"` is used to fetch the current perp-deploy Dutch-auction status.

<Tip>
  Estimate your monthly cost for this API using the [Pricing Calculator](/docs/pricing-calculator?endpoint=%2Fapi-reference%2Fhyperliquid-info%2Fperp-deploy-auction-status).
</Tip>

<Info>
  * Wire-equal to `POST api.hyperliquid.xyz/info` with `{"type": "perpDeployAuctionStatus"}`.
  * Describes the current perp-deploy (HIP-3) Dutch auction: the gas price decays over `durationSeconds` from `startGas`, and `currentGas` is the live price a deployer would pay now.
  * `currentGas` is `null` once the auction has ended; `endGas` is `null` while the auction is still active.
  * Gas prices are decimal strings. This is a global, non-user-keyed type.
</Info>

Returns the status of the current perp-deploy Dutch auction. To deploy a new HIP-3 perp DEX, a deployer pays the auction's gas price, which decays over time from `startGas`. `currentGas` is the live price; it becomes `null` after the auction ends, at which point `endGas` records the final price.

## Endpoint

```
POST https://hypercore.goldrushdata.com/info
Authorization: Bearer <GOLDRUSH_API_KEY>
Content-Type: application/json
```

## Request

<ParamField body="type" type="string" required>
  Always `"perpDeployAuctionStatus"`.
</ParamField>

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://hypercore.goldrushdata.com/info \
    -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "type": "perpDeployAuctionStatus"
    }'
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch("https://hypercore.goldrushdata.com/info", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.GOLDRUSH_API_KEY}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      type: "perpDeployAuctionStatus",
    }),
  });

  const auction = await response.json();
  ```

  ```python Python theme={null}
  import os, requests

  response = requests.post(
      "https://hypercore.goldrushdata.com/info",
      headers={"Authorization": f"Bearer {os.environ['GOLDRUSH_API_KEY']}"},
      json={"type": "perpDeployAuctionStatus"},
  )

  auction = response.json()
  ```
</CodeGroup>

## Response

A single object describing the current perp-deploy gas auction.

```json theme={null}
{
  "startTimeSeconds": 1784707200,
  "durationSeconds": 111600,
  "startGas": "1079.90632916",
  "currentGas": "601.24549785",
  "endGas": null
}
```

### Field descriptions

<Note>
  Gas prices are returned as **decimal strings**, preserving upstream precision. Do not parse them as floats - keep them as strings or use a fixed-precision decimal type.
</Note>

<ResponseField name="startTimeSeconds" type="int">
  Auction start time (Unix seconds).
</ResponseField>

<ResponseField name="durationSeconds" type="int">
  Auction duration, in seconds.
</ResponseField>

<ResponseField name="startGas" type="string">
  Starting gas price, as a decimal string.
</ResponseField>

<ResponseField name="currentGas" type="string | null">
  Current gas price, as a decimal string; `null` when the auction has ended.
</ResponseField>

<ResponseField name="endGas" type="string | null">
  Ending gas price, as a decimal string; `null` while the auction is still active.
</ResponseField>

*Last reviewed: 2026-07-24*
