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

# Perp Deploy Auction

Status of the perpetual deploy dutch auction. Returns current gas price, time remaining, and deployer information.

## Example

```bash theme={null}
curl https://hyper.polynode.dev/exchange/perpAuction
```


## OpenAPI

````yaml GET /exchange/perp-auction
openapi: 3.1.0
info:
  title: hypernode API
  description: >-
    Real-time HyperLiquid L1 streaming and REST API for market data, trading,
    and account management.
  contact:
    name: hypernode
    url: https://hyper.polynode.dev
  version: 1.0.0
servers:
  - url: https://hyper.polynode.dev
    description: Production
security: []
paths:
  /exchange/perp-auction:
    get:
      tags:
        - Discovery
      summary: Perp deploy auction
      operationId: get_perp_auction
      parameters:
        - name: network
          in: query
          required: false
          schema:
            type: string
            default: mainnet
      responses:
        '200':
          description: Perp auction status

````