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

# spotPairDeployAuctionStatus | Hyperliquid info

> The info endpoint with type: "spotPairDeployAuctionStatus" retrieves the current status of the spot pair deployment auction, including timing, gas prices.

<Info>
  This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see [Hyperliquid methods](/docs/hyperliquid-methods) for the full availability breakdown.
</Info>

The `info` endpoint with `type: "spotPairDeployAuctionStatus"` retrieves the current status of the spot pair deployment auction, including timing, gas prices, and duration.

## Parameters

### Request body

* `type` (string, required) — The request type. Must be `"spotPairDeployAuctionStatus"`.

## Response

The response is an object containing:

* `startTimeSeconds` (integer) — Auction start time as Unix timestamp in seconds.
* `durationSeconds` (integer) — Total auction duration in seconds.
* `startGas` (string) — Starting gas price for the auction.
* `currentGas` (string) — Current gas price in the auction.
* `endGas` (string or null) — Ending gas price, or `null` if the auction is still active.

## Example request

<CodeGroup>
  ```shell Shell theme={"system"}
  curl -X POST \
    -H "Content-Type: application/json" \
    -d '{"type": "spotPairDeployAuctionStatus"}' \
    https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
  ```

  ```python Python (hyperliquid-python-sdk) theme={"system"}
  from hyperliquid.info import Info

  info = Info("YOUR_CHAINSTACK_ENDPOINT", skip_ws=True)

  # The Python SDK has no dedicated helper for this request type,
  # so post the request body directly through the inherited client.
  status = info.post("/info", {"type": "spotPairDeployAuctionStatus"})
  print(status)
  ```

  ```typescript TypeScript (@nktkas/hyperliquid) theme={"system"}
  import { HttpTransport, InfoClient } from "@nktkas/hyperliquid";

  const transport = new HttpTransport({ apiUrl: "YOUR_CHAINSTACK_ENDPOINT" });
  const info = new InfoClient({ transport });

  const status = await info.spotPairDeployAuctionStatus();
  console.log(status);
  ```
</CodeGroup>

<Note>
  **Use your own endpoint in your code.** The code examples use a placeholder Chainstack endpoint (YOUR\_CHAINSTACK\_ENDPOINT) — replace it with your own Hyperliquid node endpoint from the [Chainstack console](https://console.chainstack.com/). The curl above uses a shared public endpoint for quick checks only; do not use it in production.
</Note>

## Example response

```json theme={"system"}
{
  "startTimeSeconds": 1771203600,
  "durationSeconds": 111600,
  "startGas": "500.0",
  "currentGas": "500.0",
  "endGas": null
}
```

## Use case

The `info` endpoint with `type: "spotPairDeployAuctionStatus"` is useful for:

* Monitoring the current gas auction for deploying spot pairs
* Timing spot pair deployments for optimal gas prices
* Building auction tracking interfaces for token deployers


## OpenAPI

````yaml openapi/hyperliquid_node_api/hypercore_info/info_spot_pair_deploy_auction_status.json post /4f8d8f4040bdacd1577bff8058438274/info
openapi: 3.0.0
info:
  title: Hyperliquid Node API
  version: 1.0.0
  description: This is an API for interacting with Chainstack Hyperliquid node.
servers:
  - url: https://hyperliquid-mainnet.core.chainstack.com
security: []
paths:
  /4f8d8f4040bdacd1577bff8058438274/info:
    post:
      tags:
        - hyperliquid operations
      summary: info (spotPairDeployAuctionStatus)
      operationId: infoSpotPairDeployAuctionStatus
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  description: Request type
                  default: spotPairDeployAuctionStatus
                  enum:
                    - spotPairDeployAuctionStatus
              required:
                - type
      responses:
        '200':
          description: Current spot pair deployment auction status
          content:
            application/json:
              schema:
                type: object

````