accounts
accounts
Page 9 of 22.
Overview
-
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/accounts?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/accounts?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/accounts.d.ts https://example-data.com/types/accounts.d.ts
import type { Account, ListEnvelope } from "./types/accounts";
const res = await fetch(
"https://example-data.com/api/v1/accounts?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Account>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/accounts",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=10&limit=24",
"prev": "/api/v1/accounts?page=8&limit=24"
}
}