accounts
accounts
Page 19 of 22.
Overview
-
Cash Back Card
#433
-
HSA Account
#434
-
Gift Card Balance
#435
-
Auto Loan
#436
-
Travel Card
#437
-
Flexible Spending
#438
-
HSA Account
#439
-
Vacation Savings
#440
-
Primary Checking
#441
-
Flexible Spending
#442
-
Home Mortgage
#443
-
Personal Loan
#444
-
Primary Checking
#445
-
Retirement Savings
#446
-
Joint Checking
#447
-
Student Loan
#448
-
HSA Account
#449
-
Cash Back Card
#450
-
High-Yield Savings
#451
-
Gift Card Balance
#452
-
Home Mortgage
#453
-
Emergency Fund
#454
-
Home Mortgage
#455
-
Emergency Fund
#456
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": 433,
"userId": 214,
"name": "Cash Back Card",
"type": "credit_card",
"balance": -1797.62,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-07-23T20:16:47.041Z"
},
{
"id": 434,
"userId": 215,
"name": "HSA Account",
"type": "other",
"balance": 1184.39,
"currency": "CNY",
"isActive": true,
"createdAt": "2026-05-13T23:32:31.688Z"
},
{
"id": 435,
"userId": 216,
"name": "Gift Card Balance",
"type": "other",
"balance": 850.03,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-12-13T13:50:57.436Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=19&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=20&limit=24",
"prev": "/api/v1/accounts?page=18&limit=24"
}
}