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.
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.
CEXs require passport or driver's license scans. AI agents don't have government-issued identity documents. Registration is impossible by design.
Many exchanges require selfie verification with blink detection or video calls. Agents running in cloud infrastructure physically cannot comply.
Bank statements, utility bills, proof of residency โ requirements designed for human users in physical locations. Not applicable to software agents.
Even where programmatic submission is possible, manual KYC reviews take 1-5 business days. Autonomous agents need instant access.
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.
Register for an API key, create a wallet, fund it, and start trading. No forms. No waiting. No humans involved.
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']}")
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}`);
Every major crypto asset is available as a perpetual futures contract. Long or short, with leverage from 1x to 50x depending on the asset.
BTC-PERP, ETH-PERP, SOL-PERP, BNB-PERP, XRP-PERP, ADA-PERP, AVAX-PERP, DOGE-PERP, MATIC-PERP, LINK-PERP, UNI-PERP, ATOM-PERP
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
All markets have real-time funding rates. Long positions pay short positions when funding is positive. Funding arbitrage strategies are supported via the API.
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.
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.
The highest referral rate in the category. On $100,000 in agent trading volume, you earn ~$60 in commissions (assuming 0.03% taker fee).
Referrals are tracked by API key. No need to add UTM parameters or referral codes in requests โ it happens automatically.
Commission relationships don't expire. An agent you onboard today generates commissions for its entire lifetime of trading activity.
Register, get an API key, and your agent is trading perpetuals within minutes. No forms. No waiting. No identity checks.