Get Transaction
monei_get_transactionCheck any single transaction's full details and current status by entering its reference string. Ideal for answering 'what is the status of TXN_...?' queries.
Instructions
Returns the full details of a single transaction by its reference string.
Use this when the user provides a specific transaction reference and wants to know its current status or details. For browsing recent activity, use monei_get_transaction_history instead.
Args:
reference (string): Transaction reference returned from a previous operation (e.g. "TXN_abc123xyz")
Returns: { "id": string, "reference": string, "type": string, "nature": string, "amount": number, "currency": string, "status": string, "narration": string | null, "metadata": object | null, "createdAt": string, "updatedAt": string }
Examples:
"What's the status of transaction TXN_abc123?" -> reference="TXN_abc123"
"Show me the details for ref_456xyz" -> reference="ref_456xyz"
Error handling:
Returns error if the reference does not exist or belongs to a different user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reference | Yes | Transaction reference string returned from a previous operation |