Track Offramp
monei_track_offrampCheck offramp transaction status using its reference to confirm crypto-to-fiat settlement, poll progress, and detect completion or issues.
Instructions
Checks the current status of an offramp transaction by its reference.
Use this after monei_sell_crypto_for_naira to monitor settlement. Most transactions complete within 5–10 minutes. Poll every 30–60 seconds if the user is waiting.
Possible statuses: initiated, quote_created, awaiting_deposit, deposit_received, pending, processing, fiat_sent, completed, failed, cancelled, refunded, expired.
Args:
reference (string): The reference returned from monei_sell_crypto_for_naira
Returns: { "id": string, "reference": string, "status": string, "cryptoAmount": number, "fiatAmount": number, "exchangeRate": number, "fromCurrency": string, "toCurrency": string, "createdAt": string, "updatedAt": string, "completedAt": string | null }
Examples:
"What's the status of my USDT sale?" -> call with the reference from the sell
"Did my offramp complete?" -> check status field — "completed" means NGN has been sent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reference | Yes | Offramp transaction reference returned from monei_sell_crypto_for_naira |