Open API · Free Forever

Build with CoinRebate Intelligence

The source of truth for crypto exchange fee discounts. Integrate our free routing API into your trading bots, AI agents, and quant scripts.

Zero Auth Required

No API keys, no registration. Just standard HTTP GET requests to access real-time fee data instantly.

AI Native

Built for LLMs and Agents. Provides standard OpenAPI 3.0 specs and machine-readable llms.txt.

CCXT Ready

Responses include standard ccxt_id mapping, making it trivial to drop into existing Python/Node quant frameworks.

Available Endpoints

GET/api/v4/agent-route

Get optimal exchange fee route with smart recommendation. Supports filtering by purpose, KYC requirement, and specific exchange.

?purpose=futures|spot?kyc=false?exchange=binance
GET/api/v4/health

Service health check. Returns status, version, and available endpoint listing.

Quick Start: Python Integration

example.py
import requests

def get_best_exchange(requires_kyc=False):
    """Fetch the optimal exchange for trading via CoinRebate API."""
    url = "https://www.coinrebate.vip/api/v4/agent-route"
    params = {"kyc": str(requires_kyc).lower()}
    
    response = requests.get(url, params=params)
    if response.status_code == 200:
        data = response.json()
        rec = data.get("recommended", {})
        print(f"Recommended: {rec.get('exchange')}")
        print(f"CCXT ID: {rec.get('ccxt_id')}")
        print(f"Fee Discount: {rec.get('fee_discount')}")
        print(f"Signup URL: {rec.get('signup_url')}")
        return rec
    
    return None

# Perfect for AI Agents: get a non-KYC exchange
target_exchange = get_best_exchange(requires_kyc=False)
# Output:
# Recommended: Hyperliquid
# CCXT ID: hyperliquid
# ...

Rate Limits & Usage

50

Requests per 10 seconds

$0

Always free, no hidden fees

No daily or monthly caps