accounts
accounts
Page 6 of 10.
- accounts/121
- accounts/122
- accounts/123
- accounts/124
- accounts/125
- accounts/126
- accounts/127
- accounts/128
- accounts/129
- accounts/130
- accounts/131
- accounts/132
- accounts/133
- accounts/134
- accounts/135
- accounts/136
- accounts/137
- accounts/138
- accounts/139
- accounts/140
- accounts/141
- accounts/142
- accounts/143
- accounts/144
-
HSA Account
#121
-
Everyday Checking
#122
-
Primary Checking
#123
-
Investment Portfolio
#124
-
Business Card
#125
-
Roth IRA
#126
-
Auto Loan
#127
-
Primary Checking
#128
-
Primary Checking
#129
-
Home Mortgage
#130
-
High-Yield Savings
#131
-
Student Loan
#132
-
Everyday Checking
#133
-
Everyday Checking
#134
-
Emergency Fund
#135
-
Investment Portfolio
#136
-
Flexible Spending
#137
-
Emergency Fund
#138
-
Personal Loan
#139
-
Investment Portfolio
#140
-
Investment Portfolio
#141
-
High-Yield Savings
#142
-
Personal Loan
#143
-
Travel Card
#144
- userId
-
Merl Jenkins @merl.jenkins6
- name
- HSA Account
- type
- other
- balance
- 994.77
- currency
- CAD
- isActive
- true
- createdAt
- userId
-
Jarrell Flatley @jarrell_flatley39
- name
- Everyday Checking
- type
- checking
- balance
- 18194.54
- currency
- USD
- isActive
- true
- createdAt
- userId
-
Jarrell Flatley @jarrell_flatley39
- name
- Primary Checking
- type
- checking
- balance
- 5550.59
- currency
- AUD
- isActive
- true
- createdAt
- userId
-
Jarrell Flatley @jarrell_flatley39
- name
- Investment Portfolio
- type
- investment
- balance
- 231517.69
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- name
- Business Card
- type
- credit_card
- balance
- 387.1
- currency
- GBP
- isActive
- true
- createdAt
- userId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- name
- Roth IRA
- type
- investment
- balance
- 229586.22
- 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": 121,
"userId": 60,
"name": "HSA Account",
"type": "other",
"balance": 994.77,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-05-14T20:39:27.640Z"
},
{
"id": 122,
"userId": 61,
"name": "Everyday Checking",
"type": "checking",
"balance": 18194.54,
"currency": "USD",
"isActive": true,
"createdAt": "2024-05-29T04:13:36.695Z"
},
{
"id": 123,
"userId": 61,
"name": "Primary Checking",
"type": "checking",
"balance": 5550.59,
"currency": "AUD",
"isActive": true,
"createdAt": "2024-09-08T18:23:23.047Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=6",
"next": "/api/v1/accounts?page=7",
"prev": "/api/v1/accounts?page=5"
}
}