# x402stock HIP-3 DEX Listing

> x402stock HIP-3 DEX Listing is a paid API for AI agents from x402stock.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists all permissionless builder-deployed perpetual DEXes on Hyperliquid's HIP-3 standard, returning each DEX's ID, name, deployer, and market count

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/hip3/dexs
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-hip-3-dex-listing-9a95f324
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U0DZufhdSTYT5PyRmSfxj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402stock-hip-3-dex-listing-9a95f324
```

Example prompt: Show me all the builder-deployed HIP-3 perp DEXes currently live on Hyperliquid — I want to see each one's name, deployer, and how many markets it has.

## When to prefer this

Use this endpoint when you need a directory-level view of all permissionless HIP-3 perp DEXes on Hyperliquid, particularly when looking for synthetic markets covering assets not available on Hyperliquid's native perps (e.g., international equities, commodities, FX, global indices). Follow up with /api/v1/hip3/{dex} for market-level detail on a specific DEX.

## Known failure modes

- No DEXes found — empty dexs array if no HIP-3 DEXes are currently deployed
- Payment failure — 402 response if USDC payment is not included or malformed
- Upstream Hyperliquid node unavailable — service may return 5xx if the chain data is inaccessible
- Stale data — as_of timestamp may lag real-time chain state during indexing delays

## How this service works

List every permissionless builder-deployed perp DEX on Hyperliquid (HIP-3). Each lists synthetic, oracle-priced 24/7 perp markets — US equities, commodities (gold, oil, copper), FX, and global index perps — that Hyperliquid's core perps and US-only stock feeds don't carry. Returns each DEX's id, name, deployer, and market count. Then read a DEX's markets at /api/v1/hip3/{dex}. From x402stock

## Output

Returns a JSON object with source attribution (x402stock), HIP-3 standard label, synthetic_perp market type, a timestamp (as_of), total DEX count, and an array of DEX objects each containing the DEX identifier, human-readable name, deployer address, fee recipient address, and market count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dexs": [
   {
    "dex": "xyz",
    "name": "XYZ",
    "deployer": "0x88806a71d74ad0a510b350545c9ae490912f0888",
    "market_count": 102,
    "fee_recipient": "0x9cd0a696c7cbb9d44de99268194cb08e5684e5fe"
   },
   {
    "dex": "flx",
    "name": "Felix Exchange",
    "deployer": "0x2fab552502a6d45920d5741a2f3ebf4c35536352",
    "market_count": 15,
    "fee_recipient": "0x2fab552502a6d45920d5741a2f3ebf4c35536352"
   }
  ],
  "note": "Permissionless builder-deployed perp DEXs on Hyperliquid (HIP-3). Each lists synthetic, oracle-priced perp markets — US equities, commodities, FX, and global indices — that trade 24/7 as a proxy for the underlying and carry funding. Excludes Hyperliquid's own core perp DEX (see /api/v1/perps). Fetch a DEX's markets at /api/v1/hip3/{dex}.",
  "as_of": "2026-07-20T00:00:00.000Z",
  "count": 2,
  "venue": "hyperliquid",
  "source": "x402stock",
  "standard": "HIP-3",
  "market_type": "synthetic_perp"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-hip-3-dex-listing-9a95f324/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402stock.xyz](https://www.zero.xyz/host/x402stock.xyz/llms.txt)
