Transactions
Get transaction
Retrieve a transaction by its ID with the Go SDK.
GET
Get transaction
Use
client.Transaction.Get to fetch a single transaction by its transaction ID.
The Go SDK does not expose a list method for transactions. Use get by reference or the Core Search API instead.
Call the method
client.Transaction.Get
| Field | Type | Description |
|---|---|---|
transactionID | string | Transaction ID to retrieve. |
Use the transaction details
Read fields on the returned
*blnkgo.Transaction 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 | string | Unique ID for the transaction. |
status | string | Current status of the transaction. |
source | string | Source balance. |
destination | string | Destination balance. |
reference | string | Reference you supplied at create time. |
meta_data | object | 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.