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

# perpDeployAuctionStatus

> Native Hyperliquid `/info` operation. Returns the current perpetual-deploy auction status.



## OpenAPI

````yaml /reference/api-json/hyperliquid-info-api-json.json post /v1/hyperliquid/info#28
openapi: 3.0.0
info:
  title: Uniblock Hyperliquid Info API
  description: >-
    Per-operation request/response docs for the Raw Hyperliquid Info dispatch
    endpoint. Each Hyperliquid Info `type` is a synthetic path through the
    single `POST /v1/hyperliquid/info` unified route.
  version: '1.0'
servers:
  - url: https://api.uniblock.dev/uni
    description: Gateway
security:
  - ApiKeyAuth: []
tags:
  - name: Hyperliquid
paths:
  /v1/hyperliquid/info#28:
    post:
      tags:
        - Hyperliquid
      summary: perpDeployAuctionStatus
      description: >-
        Native Hyperliquid `/info` operation. Returns the current
        perpetual-deploy auction status.
      operationId: perpDeployAuctionStatus_HyperliquidInfo
      parameters:
        - name: chainId
          required: true
          in: query
          description: Unique identifier for a blockchain network.
          schema:
            type: number
            enum:
              - 999
              - 998
            default: 999
            example: 999
        - name: provider
          required: false
          in: query
          description: >-
            Specify which provider to use. The project's provider priority list
            is used by default if no providers are selected. (Priority list can
            be managed on Uniblock's dashboard)
          schema:
            type: string
            enum:
              - Alchemy
              - Dwellir
              - Chainstack
              - Covalent
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/HyperliquidInfo_perpDeployAuctionStatus_Request
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/HyperliquidInfo_perpDeployAuctionStatus_Response
components:
  schemas:
    HyperliquidInfo_perpDeployAuctionStatus_Request:
      type: object
      required:
        - type
      properties:
        type:
          type: string
          enum:
            - perpDeployAuctionStatus
          default: perpDeployAuctionStatus
          example: perpDeployAuctionStatus
      example:
        type: perpDeployAuctionStatus
    HyperliquidInfo_perpDeployAuctionStatus_Response:
      type: object
      required:
        - startTimeSeconds
        - durationSeconds
        - startGas
        - currentGas
      properties:
        startTimeSeconds:
          type: number
          example: 1783591200
        durationSeconds:
          type: number
          example: 111600
        startGas:
          type: string
          example: '0.0'
        currentGas:
          type: string
          example: '0.0'
        endGas:
          type: string
          nullable: true
          description: Final gas once the auction has ended; `null` while active.
      example:
        startTimeSeconds: 1783591200
        durationSeconds: 111600
        startGas: '1000.0'
        currentGas: '514.23405017'
        endGas: null
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key to access the API (Optional)

````