Documentation Index
Fetch the complete documentation index at: https://dev-docs.multihopper.com/llms.txt
Use this file to discover all available pages before exploring further.
Use this endpoint to show users expected costs before they confirm a transfer.
Request body
The Solana mint address of the token to transfer.
Raw token amount as a string (e.g. "1000000000" for 1 SOL).
Decimal precision of the token. Defaults to 6.
Number of intermediate abstraction hops. Range: 3–10. Defaults to 7.
Response
Pricing tier determined by the USD equivalent of the transfer.
Percentage fee in basis points.
Percentage fee in raw token units.
Flat fee in lamports charged per hop.
Total flat fee in lamports across all hops.
Integrator’s share of the percentage fee in raw token units.
Integrator’s share of the flat fee in lamports.
USD equivalent of the transfer amount at quote time (used for tier selection).
Whether this estimate was made with a test-mode API key.
curl -X POST /api/v1/transfers/estimate \
-H "x-api-key: mh_live_abc123..." \
-H "Content-Type: application/json" \
-d '{
"tokenMint": "So11111111111111111111111111111111111111112",
"amountRaw": "1000000000",
"tokenDecimals": 9,
"hops": 7
}'
{
"tier": "standard",
"percentFeeBps": 5,
"percentFeeRaw": "500000",
"flatFeeLamportsPerHop": 6000,
"totalFlatFeeLamports": 42000,
"integratorPercentShare": "250000",
"integratorFlatShare": 21000,
"usdEquivalent": 150.25,
"isTestMode": false
}