Skip to main content
GET
/
v0
/
book-transfer
/
{book_transfer_id}
Get book transfer
curl --request GET \
  --url https://api.getlemma.com/v0/book-transfer/{book_transfer_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "book_transfer_Hm3pWx9nKv4bQt7d",
  "created_at": "2026-03-15T14:30:00Z",
  "source_account_id": "account_Rv4nBt8xKw2pMh6s",
  "destination_account_id": "account_Tz8mKp3xLw5nVh9c",
  "amount": 250000,
  "status": "complete",
  "description": "Quarterly intercompany settlement",
  "transaction_id": "transaction_Wp5mRx3nKv8bTh2d"
}
Returns a single book transfer object.

Path parameters

book_transfer_id
string
required
The unique identifier of the book transfer to retrieve.

Response

id
string
Unique identifier for the book transfer.
created_at
string
ISO 8601 timestamp of when the book transfer was created.
source_account_id
string
The Lemma account money moves from.
destination_account_id
string
The Lemma account money moves to.
amount
integer
The transfer amount in cents.
status
string
Current status of the book transfer.
description
string
Description of the transfer.
transaction_id
string | null
The settled transaction, once the transfer posts.
{
  "id": "book_transfer_Hm3pWx9nKv4bQt7d",
  "created_at": "2026-03-15T14:30:00Z",
  "source_account_id": "account_Rv4nBt8xKw2pMh6s",
  "destination_account_id": "account_Tz8mKp3xLw5nVh9c",
  "amount": 250000,
  "status": "complete",
  "description": "Quarterly intercompany settlement",
  "transaction_id": "transaction_Wp5mRx3nKv8bTh2d"
}