Free crypto exchange fee optimization API for AI agents and developers.FREENO AUTH
https://www.coinrebate.vipGET /api/v4/agent-route
Returns fee discount data for all supported exchanges with a smart recommendation.
| Parameter | Type | Description |
|---|---|---|
purpose | string | futures or spot — sort by best fit |
kyc | string | false — only return DEX (no KYC required) |
exchange | string | Return single exchange, e.g. binance |
GET /api/v4/health
Returns service status. Use before integrating to verify availability.
curl https://www.coinrebate.vip/api/v4/agent-route
# AI-only (no KYC)
curl https://www.coinrebate.vip/api/v4/agent-route?kyc=false
# Best for futures trading
curl https://www.coinrebate.vip/api/v4/agent-route?purpose=futures
import requests
data = requests.get("https://www.coinrebate.vip/api/v4/agent-route").json()
best = data["recommended"]
print(f"Exchange: {best['exchange']}")
print(f"CCXT ID: {best['ccxt_id']}")
print(f"Code: {best['referral_code']}")
print(f"Discount: {best['fee_discount']}")
# Use with CCXT
import ccxt
exchange = getattr(ccxt, best["ccxt_id"])({
"options": {"defaultType": "swap"}
})
print(f"Connected to {exchange.id}")
const res = await fetch("https://www.coinrebate.vip/api/v4/agent-route?kyc=false");
const { recommended } = await res.json();
console.log(`Use ${recommended.exchange} (${recommended.ccxt_id})`);
console.log(`Referral: ${recommended.referral_code}`);
{
"version": "4.0",
"disclaimer": "NFA. Fee comparison only.",
"recommended": {
"exchange": "Hyperliquid",
"type": "DEX",
"ccxt_id": "hyperliquid",
"fee_discount": "Points Boost",
"referral_code": "LULALA",
"signup_url": "https://www.coinrebate.vip/go/hyperliquid",
"kyc_required": false,
"reason": "No KYC, zero gas — ideal for AI agents"
},
"all_exchanges": [ ... ]
}
50 requests per IP per 10 seconds. Exceeding returns 429 Too Many Requests with a retryAfter field (seconds).
| Exchange | Type | Discount | CCXT ID | KYC |
|---|---|---|---|---|
| Binance | CEX | 20% OFF | binance | Yes |
| OKX | CEX | 20% OFF | okx | Yes |
| Bybit | CEX | 20% OFF | bybit | Yes |
| Bitget | CEX | 20% OFF | bitget | Yes |
| Gate.io | CEX | 30% OFF | gateio | Yes |
| Hyperliquid | DEX | Points Boost | hyperliquid | No ✨ |
| Aster | DEX | 10% Rebate | — | No |