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

# Spot Pair Auction

Status of the spot pair deploy dutch auction.

## Example

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


## OpenAPI

````yaml GET /exchange/spot-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/spot-auction:
    get:
      tags:
        - Discovery
      summary: Spot deploy auction
      operationId: get_spot_auction
      parameters:
        - name: network
          in: query
          required: false
          schema:
            type: string
            default: mainnet
      responses:
        '200':
          description: Spot auction status

````