Launch a crypto exchanger with one API โ how EIDEX Merchant API works
Building a crypto exchanger? Hereโs what our new Merchant API can save you from doing yourself
Hey Product Hunt community ๐
We just published a deep dive on our Crypto Merchant API โ the backend layer we built for teams launching crypto exchangers, P2P services, payment gateways, or trading bots.
The idea is simple: instead of spinning up your own liquidity, running blockchain nodes, and rebuilding order matching from scratch, you plug into one HTTP API and focus on your product.
What the Merchant API handles:
๐น Quotes & orders โ real-time pricing across supported pairs (BTC, ETH, USDT, SOL, XRP + 15 networks), MARKET and LIMIT execution
๐น Deposit addresses from a shared pool โ reserve an address by nonce, release it back when done. Same nonce returns the same address, so retries donโt break your logic
๐น HMAC-signed webhooks โ real-time deposit.confirmed and withdraw.completed events, no polling needed
๐น Granular permissions โ API keys with READONLY / TRADING / WITHDRAW scopes. A stolen READONLY key canโt drain funds
๐น IP whitelist (CIDR) โ configurable per key
๐น Idempotency keys โ required for POST /order and POST /withdraw, makes retries safe on money operations
๐น Rate limits โ 60 req/min per key, up to 10 keys per account
A typical exchange flow is just 6 API calls:
GET /tickers โ pull rates for the storefrontPOST /address/reserve โ reserve a deposit address by nonceClient sends funds โ you receive the deposit.confirmed webhookPOST /order โ execute with Idempotency-KeyGET /order/{id} โ track statusPOST /withdraw โ withdraw.completed webhook โ POST /address/releaseIntegration scenarios weโve documented:
โข Classic web exchanger โ your storefront, our settlement layer
โข Telegram bot โ same logic, no frontend needed
โข White-label exchanger โ your brand, our infra hidden behind it
Full docs, OpenAPI spec for Postman/Insomnia, and quickstart โ https://eidex.io/blog/api-dlya-obmennika-kriptovalyut
Discussion prompt for the community:
For those of you whoโve built (or considered building) a crypto product โ whatโs usually the biggest bottleneck? Liquidity access, compliance, or infrastructure?
And for those whoโve integrated third-party APIs: what would actually make you choose a merchant API over building in-house? Curious to hear real trade-offs from builders here.

Replies