accounts
accounts
Page 20 of 22.
Overview
-
Home Mortgage
#457
-
Student Loan
#458
-
Vacation Savings
#459
-
High-Yield Savings
#460
-
401(k)
#461
-
Emergency Fund
#462
-
Auto Loan
#463
-
Brokerage Account
#464
-
Cash Back Card
#465
-
Gift Card Balance
#466
-
Roth IRA
#467
-
Personal Loan
#468
-
Travel Card
#469
-
Flexible Spending
#470
-
Brokerage Account
#471
-
High-Yield Savings
#472
-
Joint Checking
#473
-
Cash Back Card
#474
-
401(k)
#475
-
Home Mortgage
#476
-
Joint Checking
#477
-
Student Loan
#478
-
Main Checking
#479
-
Cash Back Card
#480
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": 457,
"userId": 227,
"name": "Home Mortgage",
"type": "loan",
"balance": -418125.89,
"currency": "CHF",
"isActive": true,
"createdAt": "2026-02-03T10:05:04.246Z"
},
{
"id": 458,
"userId": 227,
"name": "Student Loan",
"type": "loan",
"balance": -398766.17,
"currency": "CHF",
"isActive": true,
"createdAt": "2024-10-28T05:54:45.428Z"
},
{
"id": 459,
"userId": 227,
"name": "Vacation Savings",
"type": "savings",
"balance": 13280.97,
"currency": "GBP",
"isActive": true,
"createdAt": "2026-05-18T23:36:53.803Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=20&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=21&limit=24",
"prev": "/api/v1/accounts?page=19&limit=24"
}
}