POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (perpDeployAuctionStatus)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "perpDeployAuctionStatus"
}'
{
  "auctionActive": true,
  "currentAuction": {
    "auctionId": "<string>",
    "assetName": "<string>",
    "assetSymbol": "<string>",
    "startTime": 123,
    "endTime": 123,
    "currentHighestBid": "<string>",
    "highestBidder": "<string>",
    "minimumBid": "<string>",
    "bidIncrement": "<string>",
    "totalBids": 123,
    "timeRemaining": 123
  },
  "upcomingAuctions": [
    {
      "auctionId": "<string>",
      "assetName": "<string>",
      "assetSymbol": "<string>",
      "scheduledStartTime": 123,
      "estimatedDuration": 123
    }
  ],
  "recentCompletedAuctions": [
    {
      "auctionId": "<string>",
      "assetName": "<string>",
      "assetSymbol": "<string>",
      "winningBid": "<string>",
      "winner": "<string>",
      "completionTime": 123,
      "deploymentStatus": "<string>"
    }
  ],
  "systemStatus": "<string>"
}
The info endpoint with type: "perpDeployAuctionStatus" retrieves the status information about perpetual contract deployment auctions on the Hyperliquid exchange. This endpoint provides timing information and gas-related data for the auction system.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

Request body

  • type (string, required) — The request type. Must be "perpDeployAuctionStatus" to retrieve perpetual deployment auction status.

Response

The response is an object containing auction timing and gas information:

Timing information

  • startTimeSeconds (integer) — Auction start time in seconds since epoch
  • durationSeconds (integer) — Duration of the auction in seconds

Gas information

  • startGas (string) — Starting gas amount for the auction
  • currentGas (string) — Current gas amount
  • endGas (string or null) — Ending gas amount (null if auction is ongoing)

Example request

Shell
curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"type": "perpDeployAuctionStatus"}' \
  https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info

Example response

{
  "startTimeSeconds": 1747656000,
  "durationSeconds": 111600,
  "startGas": "500.0",
  "currentGas": "500.0",
  "endGas": null
}

Use case

The info endpoint with type: "perpDeployAuctionStatus" is essential for applications that need to:
  • Auction timing: Monitor the timing and duration of perpetual deployment auctions
  • Gas tracking: Track gas amounts and changes during auction processes
  • System monitoring: Monitor the status of the auction system infrastructure
  • Timeline calculation: Calculate auction progress and remaining time
  • Integration timing: Plan system integrations around auction schedules
  • Status reporting: Report on auction system operational status
  • Data analysis: Analyze auction patterns and gas consumption trends
  • Monitoring dashboards: Display auction timing information in management interfaces
This endpoint provides basic timing and gas information for the perpetual deployment auction system on Hyperliquid.

Body

application/json

Response

200 - application/json

Current status of perpetual deployment auctions

Information about ongoing and upcoming perpetual deployment auctions