Skip to main content
GET
/
v0
/
checks
/
{check_id}
Get a check deposit
curl --request GET \
  --url https://api.getlemma.com/v0/checks/{check_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "check_deposit_Tm6bXn9hRw3pFk7c",
  "amount": 100000,
  "status": "submitted",
  "transaction_id": "transaction_Ab5cDx3nKv8bTh2d",
  "inbound_mail_item_id": "inbound_mail_item_Kv7nWp3hTx9cBd5m",
  "hold": {
    "status": "held",
    "automatically_releases_at": "2026-03-19T14:00:00Z",
    "released_at": null
  },
  "micr": {
    "routing_number": "021000021",
    "account_number": "9876543210",
    "auxiliary_on_us": null,
    "serial_number": "00012345"
  }
}

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 the details of a check deposit, including its current status, hold information, and MICR data. Use this endpoint to poll a check’s status after discovering it via the List provider mail endpoint.

Path parameters

check_id
string
required
The ID of the check deposit, prefixed with check_deposit_.

Response

id
string
Unique identifier for the check deposit.
amount
integer
The check amount in cents.
status
string
The processing status of the check. One of pending, submitted, returned, or rejected.
transaction_id
string | null
The ID for the transaction created by the check deposit. Null if no transaction has been created yet.
inbound_mail_item_id
string | null
The mail item this check was found in. Null if the check was not received via lockbox mail.
hold
object | null
Fund hold details. Present when deposited funds are held before becoming available. Null if there is no hold.
micr
object | null
Fields read from the check’s MICR line. Null when we have not submitted the check for deposit.
{
  "id": "check_deposit_Tm6bXn9hRw3pFk7c",
  "amount": 100000,
  "status": "submitted",
  "transaction_id": "transaction_Ab5cDx3nKv8bTh2d",
  "inbound_mail_item_id": "inbound_mail_item_Kv7nWp3hTx9cBd5m",
  "hold": {
    "status": "held",
    "automatically_releases_at": "2026-03-19T14:00:00Z",
    "released_at": null
  },
  "micr": {
    "routing_number": "021000021",
    "account_number": "9876543210",
    "auxiliary_on_us": null,
    "serial_number": "00012345"
  }
}