accounts
accounts
Page 4 of 10.
-
Retirement Savings
#73
-
High-Yield Savings
#74
-
Brokerage Account
#75
-
Brokerage Account
#76
-
Flexible Spending
#77
-
401(k)
#78
-
HSA Account
#79
-
Gift Card Balance
#80
-
Joint Checking
#81
-
Cash Back Card
#82
-
Home Mortgage
#83
-
Business Card
#84
-
Joint Checking
#85
-
Business Card
#86
-
Cash Back Card
#87
-
Vacation Savings
#88
-
Travel Card
#89
-
Vacation Savings
#90
-
401(k)
#91
-
Cash Back Card
#92
-
Flexible Spending
#93
-
Rewards Card
#94
-
Everyday Checking
#95
-
Business Card
#96
- userId
-
Lenny Howe @lenny.howe
- name
- Retirement Savings
- type
- savings
- balance
- 17763.18
- currency
- CHF
- isActive
- true
- createdAt
- userId
-
Edward Jacobson @edward_jacobson38
- name
- High-Yield Savings
- type
- savings
- balance
- 41730.49
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Edward Jacobson @edward_jacobson38
- name
- Brokerage Account
- type
- investment
- balance
- 8517.16
- currency
- JPY
- isActive
- true
- createdAt
- userId
-
Edward Jacobson @edward_jacobson38
- name
- Brokerage Account
- type
- investment
- balance
- 149236.11
- currency
- USD
- isActive
- true
- createdAt
- userId
-
Margaretta Barrows @margaretta_barrows41
- name
- Flexible Spending
- type
- other
- balance
- 684.57
- currency
- CHF
- isActive
- true
- createdAt
- userId
-
Margaretta Barrows @margaretta_barrows41
- name
- 401(k)
- type
- investment
- balance
- 44843.97
- currency
- USD
- isActive
- false
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/accounts?limit=25"const res = await fetch(
"https://example-data.com/api/v1/accounts?limit=25"
);
const { data, meta } = await res.json();import type { Account, ListEnvelope } from "https://example-data.com/types/accounts.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/accounts?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Account>;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 73,
"userId": 37,
"name": "Retirement Savings",
"type": "savings",
"balance": 17763.18,
"currency": "CHF",
"isActive": true,
"createdAt": "2024-08-09T11:29:13.211Z"
},
{
"id": 74,
"userId": 38,
"name": "High-Yield Savings",
"type": "savings",
"balance": 41730.49,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-08-10T23:58:19.374Z"
},
{
"id": 75,
"userId": 38,
"name": "Brokerage Account",
"type": "investment",
"balance": 8517.16,
"currency": "JPY",
"isActive": true,
"createdAt": "2025-06-10T21:14:52.078Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=4",
"next": "/api/v1/accounts?page=5",
"prev": "/api/v1/accounts?page=3"
}
}