accounts
accounts
Page 3 of 10.
-
Student Loan
#49
-
Flexible Spending
#50
-
HSA Account
#51
-
Retirement Savings
#52
-
Student Loan
#53
-
Brokerage Account
#54
-
Emergency Fund
#55
-
Rewards Card
#56
-
Auto Loan
#57
-
High-Yield Savings
#58
-
Flexible Spending
#59
-
Flexible Spending
#60
-
Home Mortgage
#61
-
Business Card
#62
-
Business Card
#63
-
Cash Back Card
#64
-
Flexible Spending
#65
-
Rewards Card
#66
-
Flexible Spending
#67
-
Student Loan
#68
-
Home Mortgage
#69
-
Main Checking
#70
-
Business Card
#71
-
Rewards Card
#72
- userId
-
Jennifer Stoltenberg @jennifer_stoltenberg
- name
- Student Loan
- type
- loan
- balance
- -103014.23
- currency
- USD
- isActive
- false
- createdAt
- userId
-
Melvina Reilly @melvina_reilly83
- name
- Flexible Spending
- type
- other
- balance
- 13384.98
- currency
- CAD
- isActive
- true
- createdAt
- userId
-
Melvina Reilly @melvina_reilly83
- name
- HSA Account
- type
- other
- balance
- 7564.7
- currency
- USD
- isActive
- true
- createdAt
- userId
-
Rosella Homenick @rosella.homenick
- name
- Retirement Savings
- type
- savings
- balance
- 29507.76
- currency
- CAD
- isActive
- true
- createdAt
- userId
-
Rosella Homenick @rosella.homenick
- name
- Student Loan
- type
- loan
- balance
- -128986.67
- currency
- EUR
- isActive
- true
- createdAt
- userId
-
Rosella Homenick @rosella.homenick
- name
- Brokerage Account
- type
- investment
- balance
- 180572.35
- currency
- CAD
- isActive
- true
- 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": 49,
"userId": 25,
"name": "Student Loan",
"type": "loan",
"balance": -103014.23,
"currency": "USD",
"isActive": false,
"createdAt": "2026-04-05T08:45:46.338Z"
},
{
"id": 50,
"userId": 26,
"name": "Flexible Spending",
"type": "other",
"balance": 13384.98,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-12-13T03:40:23.880Z"
},
{
"id": 51,
"userId": 26,
"name": "HSA Account",
"type": "other",
"balance": 7564.7,
"currency": "USD",
"isActive": true,
"createdAt": "2025-05-30T23:30:59.590Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=3",
"next": "/api/v1/accounts?page=4",
"prev": "/api/v1/accounts?page=2"
}
}