accounts
accounts
Page 15 of 22.
Overview
-
Emergency Fund
#337
-
Flexible Spending
#338
-
Travel Card
#339
-
Home Mortgage
#340
-
Retirement Savings
#341
-
Gift Card Balance
#342
-
Home Mortgage
#343
-
Travel Card
#344
-
Main Checking
#345
-
Brokerage Account
#346
-
Brokerage Account
#347
-
Main Checking
#348
-
Cash Back Card
#349
-
Vacation Savings
#350
-
Roth IRA
#351
-
High-Yield Savings
#352
-
Everyday Checking
#353
-
Flexible Spending
#354
-
401(k)
#355
-
HSA Account
#356
-
401(k)
#357
-
Cash Back Card
#358
-
Cash Back Card
#359
-
Primary Checking
#360
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": 337,
"userId": 165,
"name": "Emergency Fund",
"type": "savings",
"balance": 7843.94,
"currency": "JPY",
"isActive": true,
"createdAt": "2025-10-14T03:58:16.444Z"
},
{
"id": 338,
"userId": 165,
"name": "Flexible Spending",
"type": "other",
"balance": 699.62,
"currency": "CNY",
"isActive": true,
"createdAt": "2026-04-04T05:44:05.529Z"
},
{
"id": 339,
"userId": 166,
"name": "Travel Card",
"type": "credit_card",
"balance": -2166.93,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-12-17T05:16:28.567Z"
}
],
"meta": {
"page": 15,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=15&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=16&limit=24",
"prev": "/api/v1/accounts?page=14&limit=24"
}
}