Skip to main content
GET
/
accounts
/
{account_id}
/
transactions
List transactions for an account
curl --request GET \
  --url https://api-sandbox.ledgersyncappv2.com/v3/accounts/{account_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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

account_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.

cursor
string

Opaque cursor returned by a previous list response.

limit
integer
default:25

Max items per page (1–100).

Required range: 1 <= x <= 100
from
string<date>

Only include transactions on or after this date (RFC 3339, e.g. 2026-01-01).

to
string<date>

Only include transactions before this date — upper bound is exclusive.

Response

A page of transactions, newest first.

data
object[]
required