Integration guide for people
One entry point for CoinRebate
Choose the interface you already use to check exchange fees, costs after rebate, and country availability. Each path works on its own.
Need machine-readable context for an AI? Open the AI Agent portal
Live data
Live AI data
Every number comes from existing telemetry. Tool calls show their measurement start date, and verified visits stay separate from observed traffic.
Loading live data…
REST API
Use one no-auth GET endpoint for exchange routing, fees, and rebate data. Responses include standard CCXT IDs for bots and quant scripts.
Available endpoints
/api/v4/agent-routeReturns exchanges and a recommendation; supports purpose, kyc, exchange, country, and fees parameters.
/api/v4/healthReturns service status, version, and available endpoints.
import requests
params = {"purpose": "spot", "country": "US"}
response = requests.get(
"https://www.coinrebate.vip/api/v4/agent-route",
params=params,
timeout=10,
)
response.raise_for_status()
recommended = response.json()["recommended"]
print(recommended["name"])
print(recommended["ccxt_id"])
print(recommended["fee_discount"])
print(recommended["signup_url"])MCP integration
The remote MCP exposes ten read-only tools. The npm stdio package exposes nine; recommend_fee_option remains remote-only. Running the package with no arguments starts the stdio MCP server.
Remote MCP endpoint
https://www.coinrebate.vip/api/mcpPaste this URL to connect without installing a package or running npx.
npx -y @coinrebate/mcp-server{
"mcpServers": {
"coinrebate": {
"command": "npx",
"args": ["-y", "@coinrebate/mcp-server"]
}
}
}Ten tools
get_exchange_feesView spot and futures fees, including rates after rebate.
compare_feesCompare spot or futures exchanges by effective fee after rebate.
get_best_referralGet the referral code, rebate, and signup link for one exchange.
get_latest_newsRead the latest crypto market articles from CoinRebate.
calculate_trading_costCalculate trading fees and savings for a given volume.
get_compliant_exchangesFilter currently available exchanges by country and purpose.
recommend_fee_optionReturn or abstain from a fee recommendation for the user context (remote MCP only).
list_tradfi_perpsList Binance stock and commodity perpetuals from official exchangeInfo data.
get_perp_statsRead changes and historical weekly rank for one TradFi perpetual from official Binance klines.
check_referral_linkCheck a configured exchange referral URL while probing only allowlisted hosts.
CLI
Install once and run each command independently. Output is human-readable by default; add --json for scripts or agents.
npm i -g @coinrebate/mcp-servercoinrebate fees binanceSee fees and rates after rebate for one exchange or all exchanges.
coinrebate compare --purpose spot --country CNRank exchanges by effective fee after rebate.
coinrebate referral binance --country CNGet the signup link and referral code for one exchange.
coinrebate cost binance --volume 100000 --type spotEnter trading volume to calculate fees and savings.
coinrebate compliant --country US --purpose spotCheck which exchanges are currently available in a country.
Every command supports --help and --json. An unknown exchange returns the current list of valid names.
API deprecation policy
Breaking changes are announced on this page at least 90 days in advance and identified through Deprecation and Sunset response headers.
Machine-readable assets
Use these stable endpoints for code generation, capability discovery, or AI-ready site context.
openapi.jsonMachine-readable contract for the REST API.server-card.jsonMCP server capabilities and install information.llms.txtSite and compliance context prepared for LLMs.This page is for people
If you are configuring an AI agent, continue to the machine-first portal.