accounts
accounts
Page 7 of 10.
- accounts/145
- accounts/146
- accounts/147
- accounts/148
- accounts/149
- accounts/150
- accounts/151
- accounts/152
- accounts/153
- accounts/154
- accounts/155
- accounts/156
- accounts/157
- accounts/158
- accounts/159
- accounts/160
- accounts/161
- accounts/162
- accounts/163
- accounts/164
- accounts/165
- accounts/166
- accounts/167
- accounts/168
-
Cash Back Card
#145
-
Business Card
#146
-
Joint Checking
#147
-
HSA Account
#148
-
Auto Loan
#149
-
Main Checking
#150
-
Business Card
#151
-
Everyday Checking
#152
-
Home Mortgage
#153
-
Rewards Card
#154
-
Gift Card Balance
#155
-
Gift Card Balance
#156
-
Vacation Savings
#157
-
High-Yield Savings
#158
-
Auto Loan
#159
-
Business Card
#160
-
Business Card
#161
-
Business Card
#162
-
Vacation Savings
#163
-
Joint Checking
#164
-
Joint Checking
#165
-
Retirement Savings
#166
-
Business Card
#167
-
Flexible Spending
#168
- userId
-
Ryan Conroy @ryan_conroy
- name
- Cash Back Card
- type
- credit_card
- balance
- -3200.18
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Ryan Conroy @ryan_conroy
- name
- Business Card
- type
- credit_card
- balance
- 112.72
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Terence Lemke @terence.lemke85
- name
- Joint Checking
- type
- checking
- balance
- 1542.55
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Terence Lemke @terence.lemke85
- name
- HSA Account
- type
- other
- balance
- 19725.92
- currency
- CAD
- isActive
- true
- createdAt
- userId
-
Terence Lemke @terence.lemke85
- name
- Auto Loan
- type
- loan
- balance
- -6921.28
- currency
- USD
- isActive
- true
- createdAt
- userId
-
Candace Mueller @candace.mueller
- name
- Main Checking
- type
- checking
- balance
- 59.07
- 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": 145,
"userId": 73,
"name": "Cash Back Card",
"type": "credit_card",
"balance": -3200.18,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-01-27T20:38:21.516Z"
},
{
"id": 146,
"userId": 73,
"name": "Business Card",
"type": "credit_card",
"balance": 112.72,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-10-25T04:33:06.105Z"
},
{
"id": 147,
"userId": 74,
"name": "Joint Checking",
"type": "checking",
"balance": 1542.55,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-09-29T08:28:14.437Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=7",
"next": "/api/v1/accounts?page=8",
"prev": "/api/v1/accounts?page=6"
}
}