get_transaction
Retrieve detailed information about a specific cryptocurrency transaction using the account ID and transaction ID. Access transaction data securely through the Luno MCP Server.
Instructions
Get details of a specific transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | Account ID | |
transaction_id | Yes | Transaction ID |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Account ID",
"type": "string"
},
"transaction_id": {
"description": "Transaction ID",
"type": "string"
}
},
"required": [
"account_id",
"transaction_id"
],
"type": "object"
}