Skip to main content
GET
List a client's connections

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

client_id
string
required

Query Parameters

cursor
string

Opaque cursor returned by a previous list response.

limit
integer
default:100

Max items per page. Values above the maximum are capped, not rejected.

Required range: 1 <= x <= 500
source
enum<string>

Filter to one source — useful when your app handles multiple aggregators. Financial-data source backing an account. Aggregator sources (FINICITY, MX) and FDE back a Connection; PDF does not.

Values:

  • FINICITY — Finicity aggregation
  • MX — MX aggregation
  • FDE — Financial Document Extraction (LedgerSync proprietary)
  • PDF — Uploaded bank statements. Read-only: exposed on /accounts and /transactions (statements are not served for PDF), and never as a Connection (PDF accounts have connection_id: null).
Available options:
FINICITY,
MX,
FDE,
PDF
status
enum<string>

Filter by lifecycle status — e.g. requires_action to find the connections needing user input. Connection lifecycle status.

  • initiated — Connection started, waiting for end-user or upstream to complete
  • requires_action — Awaiting MFA or reauthorization from the end-user
  • active — Healthy, refreshing on schedule
  • failed — Connection failed; review last_error
  • disconnected — End-user revoked or LedgerSync disconnected
Available options:
initiated,
requires_action,
active,
failed,
disconnected

Response

A page of Connections.

data
object[]
required
has_more
boolean
required

Whether more items exist beyond this page.

next_cursor
string | null

Opaque cursor to pass as cursor for the next page. Null/absent when has_more is false.