accounts
accounts
Page 9 of 10.
- accounts/193
- accounts/194
- accounts/195
- accounts/196
- accounts/197
- accounts/198
- accounts/199
- accounts/200
- accounts/201
- accounts/202
- accounts/203
- accounts/204
- accounts/205
- accounts/206
- accounts/207
- accounts/208
- accounts/209
- accounts/210
- accounts/211
- accounts/212
- accounts/213
- accounts/214
- accounts/215
- accounts/216
-
Home Mortgage
#193
-
Vacation Savings
#194
-
Personal Loan
#195
-
Personal Loan
#196
-
Auto Loan
#197
-
Main Checking
#198
-
High-Yield Savings
#199
-
Main Checking
#200
-
Student Loan
#201
-
Travel Card
#202
-
Vacation Savings
#203
-
High-Yield Savings
#204
-
Everyday Checking
#205
-
Petty Cash
#206
-
Gift Card Balance
#207
-
401(k)
#208
-
Petty Cash
#209
-
Auto Loan
#210
-
Auto Loan
#211
-
Roth IRA
#212
-
Emergency Fund
#213
-
Vacation Savings
#214
-
Student Loan
#215
-
Petty Cash
#216
- userId
-
Esperanza Casper @esperanza_casper
- name
- Home Mortgage
- type
- loan
- balance
- -488224.88
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Vacation Savings
- type
- savings
- balance
- 22219.63
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Personal Loan
- type
- loan
- balance
- -470432
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Personal Loan
- type
- loan
- balance
- -11429.87
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Whitney O'Reilly @whitney.oreilly
- name
- Auto Loan
- type
- loan
- balance
- -148479.21
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Whitney O'Reilly @whitney.oreilly
- name
- Main Checking
- type
- checking
- balance
- 13379.39
- currency
- EUR
- 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": 193,
"userId": 97,
"name": "Home Mortgage",
"type": "loan",
"balance": -488224.88,
"currency": "GBP",
"isActive": true,
"createdAt": "2026-03-31T06:12:11.805Z"
},
{
"id": 194,
"userId": 98,
"name": "Vacation Savings",
"type": "savings",
"balance": 22219.63,
"currency": "CNY",
"isActive": true,
"createdAt": "2024-08-03T08:01:19.523Z"
},
{
"id": 195,
"userId": 98,
"name": "Personal Loan",
"type": "loan",
"balance": -470432,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-12-11T03:50:14.330Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=9",
"next": "/api/v1/accounts?page=10",
"prev": "/api/v1/accounts?page=8"
}
}