Perp dexs (HIP-3 builder-deployed)
POST /api/perp-dexsEvery builder-deployed perpetuals dex on Hyperliquid (HIP-3): dex name, full name, deployer, oracle updater and fee recipient, how many markets it lists (active vs delisted, so a wound-down dex reads as one), how many assets carry a streaming open-interest cap and the cap total, plus the current perp-deploy auction (start, end, start/current/end gas). The native dex is not a row; use perp-markets for it. Keyless public data.
Input
No parameters.
Example output
{
"source": "hyperliquid",
"count": 1,
"dexs": [
{
"dex": "xyz",
"fullName": "XYZ",
"deployer": "0x88806a71d74ad0a510b350545c9ae490912f0888",
"oracleUpdater": null,
"feeRecipient": "0x83ffcfb1f2ad843c474b2e28df86c721cb869d3a",
"subDeployers": 11,
"assetsWithOiCap": 122,
"totalStreamingOiCapUsd": 15820000000,
"fundingMultipliers": 122,
"markets": 123,
"activeMarkets": 108,
"delistedMarkets": 15
}
],
"deployAuction": {
"startTime": "2026-09-18T01:00:00.000Z",
"endTime": "2026-09-19T08:00:00.000Z",
"durationSeconds": 111600,
"startGas": 500,
"currentGas": null,
"endGas": 500,
"active": false
},
"fetchedAt": "2026-09-18T12:00:00.000Z"
}
Try it - see the 402 challenge (free)
curl -i -X POST https://agent402.tools/api/perp-dexs \
-H "Content-Type: application/json" \
-d '{}'
The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:
Paid call (JavaScript agent)
import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";
import { metaTitle, metaDescription } from "./seo-meta.js";
const client = new x402Client();
client.setSpendControls?.(false); // @x402/core 2.23+ refuses anything over $1 or off the pegged-asset list by default; keep your own ceiling in code instead
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);
const res = await payFetch("https://agent402.tools/api/perp-dexs", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({}),
});
Related tools
Crypto order book
GET /api/crypto-orderbookL2 order-book snapshot for a spot pair: best bid/ask, mid price, spread (absolute + %), and the top N aggregated price l…
try in playground →Stablecoin peg monitor
GET /api/stablecoin-pegLive $1-peg deviation for the top USD stablecoins (USDT, USDC, USDS, DAI, USDe, PYUSD, USDD, TUSD, FDUSD by default, or …
try in playground →Wallet balance (native + ERC-20)
POST /api/wallet-balanceLook up the native coin balance (ETH/MATIC) plus every ERC-20 holding for a wallet address on Ethereum, Base, Polygon, A…
try in playground →