get_single_transaction
Retrieve detailed information about a specific transaction from LunchMoney using its unique ID, including amount, date, and category data.
Instructions
Get details of a specific transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"debit_as_negative": {
"description": "Pass true to return debit amounts as negative",
"type": "boolean"
},
"transaction_id": {
"description": "ID of the transaction to retrieve",
"type": "number"
}
},
"required": [
"transaction_id"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}