curl --request GET \
--url https://api.example.com/api/transactions/:id \
--header 'Authorization: <authorization>'{
"400": {},
"401": {},
"404": {},
"id": "<string>",
"type": "<string>",
"amount": 123,
"currency": "<string>",
"description": "<string>",
"date": "<string>",
"userId": "<string>",
"accountId": "<string>",
"categoryId": "<string>",
"account": {
"id": "<string>",
"name": "<string>",
"type": "<string>",
"balance": 123,
"currency": "<string>"
},
"category": {
"id": "<string>",
"name": "<string>",
"type": "<string>",
"icon": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}Retrieve a specific transaction by its ID
curl --request GET \
--url https://api.example.com/api/transactions/:id \
--header 'Authorization: <authorization>'{
"400": {},
"401": {},
"404": {},
"id": "<string>",
"type": "<string>",
"amount": 123,
"currency": "<string>",
"description": "<string>",
"date": "<string>",
"userId": "<string>",
"accountId": "<string>",
"categoryId": "<string>",
"account": {
"id": "<string>",
"name": "<string>",
"type": "<string>",
"balance": 123,
"currency": "<string>"
},
"category": {
"id": "<string>",
"name": "<string>",
"type": "<string>",
"icon": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}curl -X GET https://api.yourfinanceapp.com/api/transactions/a3c4e8f2-9d7b-4a1c-8e3f-2b5d9a7c1e4f \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"id": "a3c4e8f2-9d7b-4a1c-8e3f-2b5d9a7c1e4f",
"type": "EXPENSE",
"amount": 1500.75,
"currency": "ARS",
"description": "Compra de comestibles",
"date": "2026-03-04T14:30:00.000Z",
"userId": "user-uuid-123",
"accountId": "uuid-de-la-cuenta",
"categoryId": "92b77be3-a14a-462c-a291-7eff27cbcf47",
"account": {
"id": "uuid-de-la-cuenta",
"name": "Cuenta Principal",
"type": "WALLET",
"balance": 8499.25,
"currency": "ARS"
},
"category": {
"id": "92b77be3-a14a-462c-a291-7eff27cbcf47",
"name": "Alimentos",
"type": "EXPENSE",
"icon": "🛒"
},
"createdAt": "2026-03-04T14:30:15.123Z",
"updatedAt": "2026-03-04T14:30:15.123Z",
"deletedAt": null
}
deletedAt is not null) are not accessible through this endpoint