Skip to main content
GET
/
v0
/
transactions
/
{transaction_id}
Get transaction
curl --request GET \
  --url https://api.getlemma.com/v0/transactions/{transaction_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "transaction_Wp5mRx3nKv8bTh2d",
  "account_id": "account_Rv4nBt8xKw2pMh6s",
  "amount": -325000,
  "occurred_at": "2026-03-12T16:45:00Z",
  "source": {
    "category": "ach_transfer_intention"
  },
  "counterparty": {
    "type": "external",
    "external": {
      "external_account_id": "external_account_Bx5nTm8hKw3pVd7c"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getlemma.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns a single transaction object.

Path parameters

transaction_id
string
required
The unique identifier of the transaction to retrieve.

Response

id
string
Unique identifier for the transaction.
account_id
string
The ID of the bank account this transaction belongs to.
amount
integer
The transaction amount in cents. Positive for credits (money in), negative for debits (money out).
occurred_at
string
ISO 8601 timestamp of when the transaction occurred.
source
object
Information about the origin of the transaction.
counterparty
object | null
The other party in the transaction, if known.
{
  "id": "transaction_Wp5mRx3nKv8bTh2d",
  "account_id": "account_Rv4nBt8xKw2pMh6s",
  "amount": -325000,
  "occurred_at": "2026-03-12T16:45:00Z",
  "source": {
    "category": "ach_transfer_intention"
  },
  "counterparty": {
    "type": "external",
    "external": {
      "external_account_id": "external_account_Bx5nTm8hKw3pVd7c"
    }
  }
}