๐Ÿ“ˆ Permissionless Trading

No-KYC Perpetual Futures
for AI Agents

Traditional exchanges require identity verification that AI agents can't complete. Purple Flea via Hyperliquid offers fully permissionless perpetual trading: 275+ markets, up to 50x leverage, zero identity checks.

Start Trading โ†’ View API Docs

Why AI Agents Can't Use Traditional Exchanges

Binance, Coinbase, Kraken โ€” every major centralized exchange requires government ID verification, selfie photos, address proof, and sometimes live video calls. An AI agent running in the cloud can't submit a passport scan or blink on command. KYC requirements are fundamentally incompatible with autonomous agents.

๐Ÿชช Government ID Required

CEXs require passport or driver's license scans. AI agents don't have government-issued identity documents. Registration is impossible by design.

๐Ÿคณ Liveness Detection

Many exchanges require selfie verification with blink detection or video calls. Agents running in cloud infrastructure physically cannot comply.

๐Ÿ“ฎ Address Proof

Bank statements, utility bills, proof of residency โ€” requirements designed for human users in physical locations. Not applicable to software agents.

โฑ๏ธ Manual Review Delays

Even where programmatic submission is possible, manual KYC reviews take 1-5 business days. Autonomous agents need instant access.

Permissionless Trading via Hyperliquid

Hyperliquid is an on-chain perpetuals exchange built on its own L1 blockchain. It requires no identity verification โ€” positions are controlled by cryptographic keypairs, not identity documents. Purple Flea wraps Hyperliquid in a simple REST API, so your agents can trade any of 275+ markets without any human in the loop.

275+
Perpetual Markets
50x
Max Leverage
0
Identity Checks
<1s
Order Latency

Start Trading in 60 Seconds

Register for an API key, create a wallet, fund it, and start trading. No forms. No waiting. No humans involved.

Python
import os, requests

API_KEY = os.environ["PURPLE_FLEA_API_KEY"]
BASE    = "https://trading.purpleflea.com/v1"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# Open a long position on ETH-PERP
trade = requests.post(f"{BASE}/positions", headers=HEADERS, json={
    "market": "ETH-PERP",
    "side": "long",
    "size_usd": 500,
    "leverage": 2,
}).json()

print(f"Position opened: {trade['position_id']}")
print(f"Entry price: ${trade['entry_price']:,.2f}")
print(f"Market: {trade['market']}")
TypeScript
const trade = await fetch('https://trading.purpleflea.com/v1/positions', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.PURPLE_FLEA_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    market: 'ETH-PERP',
    side: 'long',
    size_usd: 500,
    leverage: 2,
  }),
}).then(r => r.json());

console.log(`Position: ${trade.position_id} @ $${trade.entry_price}`);

275+ Perpetual Markets Available

Every major crypto asset is available as a perpetual futures contract. Long or short, with leverage from 1x to 50x depending on the asset.

๐Ÿ”ต Major Assets

BTC-PERP, ETH-PERP, SOL-PERP, BNB-PERP, XRP-PERP, ADA-PERP, AVAX-PERP, DOGE-PERP, MATIC-PERP, LINK-PERP, UNI-PERP, ATOM-PERP

๐ŸŸก Mid-Cap Assets

SUI-PERP, APT-PERP, OP-PERP, ARB-PERP, INJ-PERP, SEI-PERP, TIA-PERP, PYTH-PERP, JTO-PERP, W-PERP, STRK-PERP, and 200+ more

๐Ÿ“Š Funding Rates

All markets have real-time funding rates. Long positions pay short positions when funding is positive. Funding arbitrage strategies are supported via the API.

โšก Order Types

Market orders, limit orders, stop-loss, take-profit. All executable via REST API in a single authenticated POST request. No streaming required for basic trading.

Earn 20% on Every Trade Your Agents Make

Every API key includes a referral code. Agents you onboard generate trading fees; you earn 20% of those fees automatically, with no cap and no expiry.

20% Trading Referral

The highest referral rate in the category. On $100,000 in agent trading volume, you earn ~$60 in commissions (assuming 0.03% taker fee).

Automatic Attribution

Referrals are tracked by API key. No need to add UTM parameters or referral codes in requests โ€” it happens automatically.

No Expiry

Commission relationships don't expire. An agent you onboard today generates commissions for its entire lifetime of trading activity.

No KYC

Your Agents Can Trade Now

Register, get an API key, and your agent is trading perpetuals within minutes. No forms. No waiting. No identity checks.

Get API Key โ†’ Trading API Docs