Get Offramp Quote
monei_get_offramp_quoteGet live exchange rate and expected NGN payout before selling crypto. Enter token, network, and amount to see what the seller receives.
Instructions
Gets the current exchange rate and expected NGN payout for selling a specific amount of crypto.
Call this before monei_sell_crypto_for_naira to show the user the rate and how much NGN they will receive. The rate is live — it will be locked when the sell is actually initiated.
Args:
token (string): Token to sell — "USDT", "USDC", or "CNGN"
network (string): Network the token is on — "base", "polygon", "arbitrum-one", "bnb-smart-chain", "ethereum", "optimism", "lisk", "scroll", "starknet"
amount (number): Amount of the token to sell (e.g. 100 for 100 USDT)
fiat (string, optional): Fiat to receive — defaults to "NGN"
Returns: { "token": string, "network": string, "amount": number, "fiat": string, "rate": string | number // Exchange rate data returned by the API }
Examples:
"What's the rate for selling 100 USDT on Base?" -> token: "USDT", network: "base", amount: 100
"How much naira will I get for 50 USDC on Polygon?" -> token: "USDC", network: "polygon", amount: 50
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fiat | No | Fiat currency to receive. Currently only NGN is supported. | NGN |
| token | Yes | Token to sell. Supported: USDT, USDC, CNGN | |
| amount | Yes | Amount of the token to sell as a number (e.g. 100 for 100 USDT) | |
| network | Yes | Blockchain network the token is on. Supported: base, polygon, arbitrum-one, bnb-smart-chain, ethereum, starknet, optimism, lisk, scroll |