accounts
accounts
Page 5 of 10.
- accounts/97
- accounts/98
- accounts/99
- accounts/100
- accounts/101
- accounts/102
- accounts/103
- accounts/104
- accounts/105
- accounts/106
- accounts/107
- accounts/108
- accounts/109
- accounts/110
- accounts/111
- accounts/112
- accounts/113
- accounts/114
- accounts/115
- accounts/116
- accounts/117
- accounts/118
- accounts/119
- accounts/120
-
Student Loan
#97
-
Retirement Savings
#98
-
Personal Loan
#99
-
Retirement Savings
#100
-
Flexible Spending
#101
-
Roth IRA
#102
-
Petty Cash
#103
-
Emergency Fund
#104
-
Emergency Fund
#105
-
Student Loan
#106
-
Home Mortgage
#107
-
Auto Loan
#108
-
Gift Card Balance
#109
-
Flexible Spending
#110
-
Business Card
#111
-
Gift Card Balance
#112
-
Student Loan
#113
-
Retirement Savings
#114
-
Cash Back Card
#115
-
Gift Card Balance
#116
-
Personal Loan
#117
-
Main Checking
#118
-
Emergency Fund
#119
-
High-Yield Savings
#120
- userId
-
Green Kozey @green_kozey22
- name
- Student Loan
- type
- loan
- balance
- -182329.32
- currency
- CHF
- isActive
- true
- createdAt
- userId
-
Green Kozey @green_kozey22
- name
- Retirement Savings
- type
- savings
- balance
- 33405.84
- currency
- JPY
- isActive
- true
- createdAt
- userId
-
Jolie Abernathy @jolie_abernathy33
- name
- Personal Loan
- type
- loan
- balance
- -120156.2
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Jolie Abernathy @jolie_abernathy33
- name
- Retirement Savings
- type
- savings
- balance
- 15660.38
- currency
- JPY
- isActive
- true
- createdAt
- userId
-
Hermina West @hermina.west3
- name
- Flexible Spending
- type
- other
- balance
- 12373.31
- currency
- CNY
- isActive
- true
- createdAt
- userId
-
Hermina West @hermina.west3
- name
- Roth IRA
- type
- investment
- balance
- 231479.5
- currency
- JPY
- 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": 97,
"userId": 49,
"name": "Student Loan",
"type": "loan",
"balance": -182329.32,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-04-25T22:25:14.856Z"
},
{
"id": 98,
"userId": 49,
"name": "Retirement Savings",
"type": "savings",
"balance": 33405.84,
"currency": "JPY",
"isActive": true,
"createdAt": "2024-07-08T04:18:48.483Z"
},
{
"id": 99,
"userId": 50,
"name": "Personal Loan",
"type": "loan",
"balance": -120156.2,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-10-21T13:55:08.085Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=5",
"next": "/api/v1/accounts?page=6",
"prev": "/api/v1/accounts?page=4"
}
}