Skip to main content
GET
/
transactions
/
{transaction_id}
Get a single transaction
curl --request GET \
  --url https://api-sandbox.ledgersyncappv2.com/v3/transactions/{transaction_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "txn_FINICITY_8837",
  "account_id": "<string>",
  "amount": -28.34,
  "iso_currency_code": "USD",
  "date": "2023-12-25",
  "description": "STARBUCKS #1234 SEATTLE WA",
  "external_id": "<string>",
  "merchant_name": "<string>",
  "category": "<string>",
  "pending": true
}

Authorizations

Authorization
string
header
required

Pass your secret key in the Authorization header as a Bearer token: Authorization: Bearer sk_test_... (sandbox) or Bearer sk_live_... (production).

Keys are created in the developer portal and the plaintext secret is shown exactly once at creation. Treat them like passwords — never embed them in mobile apps or front-end code.

Path Parameters

transaction_id
string
required

Query Parameters

client_id
string
required

The Client (cli_…) to scope the read to. Required on account, transaction, and statement reads — LedgerSync's backend data APIs are scoped per end-user, so these resources are resolved within a single Client.

Response

The Transaction.

id
string
required
Example:

"txn_FINICITY_8837"

account_id
string
required
amount
number
required

Signed decimal amount in the account's currency. The sign follows the upstream aggregator's convention (matches Plaid/MX/Finicity).

Example:

-28.34

iso_currency_code
string
required

ISO-4217 currency code. Defaults to USD when the source omits it.

Example:

"USD"

date
string<date>
required

Posted date — the date the transaction cleared (Plaid-style date).

description
string
required
Example:

"STARBUCKS #1234 SEATTLE WA"

external_id
string | null

Upstream aggregator's transaction ID (Finicity, MX, etc.) if available.

merchant_name
string | null
category
string | null

LedgerSync's normalized category (best-effort across sources).

pending
boolean