Why this page matters If you want the full mental model behind the API, read this page before wiring endpoints. It explains the problem RampHub solves, how the pieces fit together, and why the order lifecycle is designed the way it is.
The problem
Most teams that want to add crypto buy or sell support run into the same issues:- Every provider has a slightly different request and response shape.
- Routes change, so the “best” option today may not be the best option tomorrow.
- Sell flows need bank resolution and payout validation before an order can even start.
- Webhooks can arrive late or be missed, which makes UI state drift from the real trade state.
- Fee handling becomes messy when the business wants to charge its own fee on top of provider routing.
What RampHub fixes
RampHub puts one routing and lifecycle layer in front of multiple providers. It gives you:- one API key model
- one quote step
- one order creation step
- one place to recover trade state
- one webhook model
- one consistent way to attach business fees
- provider uptime and downtime awareness, so routing can favor healthy rails and avoid brittle ones
How it works
RampHub works as the routing and lifecycle layer between your app and multiple ramp providers. If you want the step-by-step flow, read the Quickstart page. This page focuses on the problem RampHub solves and the bigger product picture.Supported at a glance
Providers
- UseBread
- Paycrest
- Flipeet
- Dexpay
- Pajcash
Tokens
- USDT
- USDC
- SOL
Networks
- Base
- BSC
- Ethereum
- Solana
What users experience
From the user’s point of view, the trade feels simple:- They request a quote.
- They confirm the order.
- RampHub handles routing and provider settlement.
- The app shows the live state until the trade completes.
What your app gets
RampHub is designed so the app team can focus on product instead of provider operations. That means:- fewer direct provider integrations
- less duplicate routing logic
- less manual bank and payout handling
- cleaner recovery when callbacks fail
- simpler fee collection for businesses