accounts
accounts
Page 2 of 10.
-
Vacation Savings
#25
-
Rewards Card
#26
-
Petty Cash
#27
-
Joint Checking
#28
-
High-Yield Savings
#29
-
Travel Card
#30
-
Roth IRA
#31
-
Business Card
#32
-
Joint Checking
#33
-
Travel Card
#34
-
High-Yield Savings
#35
-
High-Yield Savings
#36
-
HSA Account
#37
-
Joint Checking
#38
-
Home Mortgage
#39
-
Joint Checking
#40
-
Joint Checking
#41
-
Home Mortgage
#42
-
Home Mortgage
#43
-
Emergency Fund
#44
-
Main Checking
#45
-
Travel Card
#46
-
Rewards Card
#47
-
Emergency Fund
#48
- userId
-
Judy Hackett @judy_hackett49
- name
- Vacation Savings
- type
- savings
- balance
- 28008.28
- currency
- CAD
- isActive
- true
- createdAt
- userId
-
Alanna Kilback @alanna_kilback31
- name
- Rewards Card
- type
- credit_card
- balance
- -7652.87
- currency
- JPY
- isActive
- true
- createdAt
- userId
-
Alanna Kilback @alanna_kilback31
- name
- Petty Cash
- type
- other
- balance
- 2382.98
- currency
- CHF
- isActive
- true
- createdAt
- userId
-
Alanna Kilback @alanna_kilback31
- name
- Joint Checking
- type
- checking
- balance
- 3085.81
- currency
- JPY
- isActive
- true
- createdAt
- userId
-
Zachariah Herzog @zachariah_herzog42
- name
- High-Yield Savings
- type
- savings
- balance
- 37439.63
- currency
- EUR
- isActive
- true
- createdAt
- userId
-
Casimir Smitham @casimir_smitham35
- name
- Travel Card
- type
- credit_card
- balance
- -6496.54
- 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": 25,
"userId": 13,
"name": "Vacation Savings",
"type": "savings",
"balance": 28008.28,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-03-02T15:04:53.155Z"
},
{
"id": 26,
"userId": 14,
"name": "Rewards Card",
"type": "credit_card",
"balance": -7652.87,
"currency": "JPY",
"isActive": true,
"createdAt": "2025-08-14T01:41:49.498Z"
},
{
"id": 27,
"userId": 14,
"name": "Petty Cash",
"type": "other",
"balance": 2382.98,
"currency": "CHF",
"isActive": true,
"createdAt": "2025-05-09T20:46:28.519Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=2",
"next": "/api/v1/accounts?page=3",
"prev": "/api/v1/accounts?page=1"
}
}