Skip to main content
GET
/
v0
/
ach-transfer
/
{ach_transfer_id}
Get ACH transfer
curl --request GET \
  --url https://api.getlemma.com/v0/ach-transfer/{ach_transfer_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "ach_transfer_Lk7nQx4mVp9bRt3d",
  "account_id": "account_Rv4nBt8xKw2pMh6s",
  "external_account_id": "external_account_Bx5nTm8hKw3pVd7c",
  "amount": -150000,
  "status": "submitted",
  "statement_descriptor": "Acme payroll",
  "transaction_id": null,
  "settled_at": null,
  "submission": {
    "submitted_at": "2026-03-15T14:30:00Z",
    "expected_funds_settlement_at": "2026-03-17T14:30:00Z"
  },
  "return": null
}
Returns a single ACH transfer object.

Path parameters

ach_transfer_id
string
required
The unique identifier of the ACH transfer to retrieve.

Response

id
string
Unique identifier for the ACH transfer.
account_id
string
The Lemma account the transfer moves money from or to.
external_account_id
string | null
The external account on the other side of the transfer.
amount
integer
The transfer amount in cents. A positive amount indicates a credit transfer pushing funds to the receiving account. A negative amount indicates a debit transfer pulling funds from the receiving account (an ACH pull).
status
string
Current status of the ACH transfer.
statement_descriptor
string
The statement descriptor shown to the counterparty.
transaction_id
string | null
The settled transaction, once the transfer posts.
settled_at
string | null
ISO 8601 timestamp of when the transfer settled.
submission
object | null
Submission details, once the transfer reaches the ACH network.
return
object | null
Return details, if the transfer was returned.
{
  "id": "ach_transfer_Lk7nQx4mVp9bRt3d",
  "account_id": "account_Rv4nBt8xKw2pMh6s",
  "external_account_id": "external_account_Bx5nTm8hKw3pVd7c",
  "amount": -150000,
  "status": "submitted",
  "statement_descriptor": "Acme payroll",
  "transaction_id": null,
  "settled_at": null,
  "submission": {
    "submitted_at": "2026-03-15T14:30:00Z",
    "expected_funds_settlement_at": "2026-03-17T14:30:00Z"
  },
  "return": null
}