accounts
accounts
Page 10 of 10.
- accounts/217
- accounts/218
- accounts/219
- accounts/220
- accounts/221
- accounts/222
- accounts/223
- accounts/224
- accounts/225
- accounts/226
- accounts/227
- accounts/228
- accounts/229
- accounts/230
- accounts/231
- accounts/232
- accounts/233
- accounts/234
- accounts/235
- accounts/236
- accounts/237
- accounts/238
- accounts/239
- accounts/240
-
Travel Card
#217
-
Auto Loan
#218
-
Investment Portfolio
#219
-
401(k)
#220
-
Joint Checking
#221
-
Petty Cash
#222
-
Travel Card
#223
-
Home Mortgage
#224
-
Cash Back Card
#225
-
Personal Loan
#226
-
Gift Card Balance
#227
-
Joint Checking
#228
-
Roth IRA
#229
-
Joint Checking
#230
-
401(k)
#231
-
Primary Checking
#232
-
Travel Card
#233
-
Business Card
#234
-
Petty Cash
#235
-
Primary Checking
#236
-
401(k)
#237
-
Everyday Checking
#238
-
Cash Back Card
#239
-
Gift Card Balance
#240
- userId
-
Elva Roberts @elva.roberts48
- name
- Travel Card
- type
- credit_card
- balance
- 134.23
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Abdul Rau @abdul.rau
- name
- Auto Loan
- type
- loan
- balance
- -57438.03
- currency
- JPY
- isActive
- true
- createdAt
- userId
-
Abdul Rau @abdul.rau
- name
- Investment Portfolio
- type
- investment
- balance
- 56381.47
- currency
- AUD
- isActive
- true
- createdAt
- userId
-
Abdul Rau @abdul.rau
- name
- 401(k)
- type
- investment
- balance
- 105058.08
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- name
- Joint Checking
- type
- checking
- balance
- 16124.97
- currency
- CAD
- isActive
- true
- createdAt
- userId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- name
- Petty Cash
- type
- other
- balance
- 4560.96
- 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": 217,
"userId": 107,
"name": "Travel Card",
"type": "credit_card",
"balance": 134.23,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-06-04T15:32:02.525Z"
},
{
"id": 218,
"userId": 108,
"name": "Auto Loan",
"type": "loan",
"balance": -57438.03,
"currency": "JPY",
"isActive": true,
"createdAt": "2026-02-07T02:05:19.731Z"
},
{
"id": 219,
"userId": 108,
"name": "Investment Portfolio",
"type": "investment",
"balance": 56381.47,
"currency": "AUD",
"isActive": true,
"createdAt": "2026-05-01T11:18:37.802Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=10",
"next": "/api/v1/accounts?page=11",
"prev": "/api/v1/accounts?page=9"
}
}