Transactions
Get transaction
Retrieve a transaction by its ID with the Python SDK.
GET
Get transaction
Use
blnk.transactions.get to fetch a single transaction by its transaction ID.
The Python SDK does not expose a list method for transactions. Use Search or get by reference instead.
Call the method
blnk.transactions.get
| Field | Type | Description |
|---|---|---|
transactionId | str | Transaction ID to retrieve. |
Use the transaction details
Read
response.data for status, amounts, source, destination, and metadata. Use the transaction ID for refunds, inflight updates, or lineage queries.Response
200 OK
| Field | Type | Description |
|---|---|---|
transaction_id | str | Unique ID for the transaction. |
status | str | Current status of the transaction. |
source | str | Source balance. |
destination | str | Destination balance. |
reference | str | Reference you supplied at create time. |
meta_data | dict | Metadata stored with the transaction. |
Related docs
How transactions work
Money movement, statuses, and the transaction lifecycle.
View transaction details
HTTP request and response schema.