For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact usLogin
GuidesAPI ReferenceFDX APIChangelog
GuidesAPI ReferenceFDX APIChangelog
  • Overview
    • Introduction
    • Authentication
  • Accounts
      • GETList accounts
      • GETGet account
      • GETGet account contact
  • Statements
  • Customers
  • Transactions
LogoLogo
Contact usLogin
AccountsAccounts

List accounts

GET
/accounts
GET
/fdx/v6/accounts
$curl https://api.givechariot.com/fdx/v6/accounts \
> -H "Authorization: Bearer <token>"
1{
2 "accounts": [
3 {
4 "accountCategory": "DEPOSIT_ACCOUNT",
5 "accountType": "CHECKING",
6 "accountId": "string",
7 "accountNumber": "string",
8 "accountNumberDisplay": "string",
9 "productName": "string",
10 "currency": {
11 "currencyCode": "USD"
12 },
13 "status": "OPEN",
14 "accountOpenDate": "2023-01-15",
15 "nickName": "string",
16 "nickname": "string",
17 "description": "string",
18 "accountCloseDate": "2023-01-15"
19 }
20 ],
21 "organizationId": "string",
22 "page": {
23 "nextPageKey": "string",
24 "totalElements": 1
25 }
26}
Search and retrieve customer deposit accounts.
Was this page helpful?
Previous

Get account

Next
Built with

Authentication

AuthorizationBearer

OAuth 2.0 Bearer token. A client may hold both scopes, but each FDX authorization must contain exactly one — they are mutually exclusive per authorization. An authorization containing both will be rejected. See the Authentication page for token exchange details.

Query parameters

limitintegerOptional10-100Defaults to 10

Number of results per page. Clamped to the range 10–100.

pageKeystringOptionalformat: "uuid"

Cursor token for pagination. Pass the nextPageKey value from a previous response.

Response

A paginated list of deposit accounts
accountslist of objects
organizationIdstringformat: "uuid"

The organization that owns the accounts. Equivalent to the customerId returned by GET /customers/current.

pageobject
Pagination metadata for list responses.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
500
Internal Server Error