accounts
accounts
Page 18 of 22.
Overview
-
Emergency Fund
#409
-
Auto Loan
#410
-
Main Checking
#411
-
Primary Checking
#412
-
Investment Portfolio
#413
-
Joint Checking
#414
-
Vacation Savings
#415
-
Brokerage Account
#416
-
Vacation Savings
#417
-
Investment Portfolio
#418
-
Primary Checking
#419
-
Personal Loan
#420
-
Student Loan
#421
-
Roth IRA
#422
-
Home Mortgage
#423
-
Investment Portfolio
#424
-
Rewards Card
#425
-
Flexible Spending
#426
-
Home Mortgage
#427
-
Roth IRA
#428
-
Vacation Savings
#429
-
Petty Cash
#430
-
Investment Portfolio
#431
-
Rewards Card
#432
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": 409,
"userId": 203,
"name": "Emergency Fund",
"type": "savings",
"balance": 24556.43,
"currency": "AUD",
"isActive": true,
"createdAt": "2025-05-27T14:50:57.896Z"
},
{
"id": 410,
"userId": 203,
"name": "Auto Loan",
"type": "loan",
"balance": -350461.19,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-04-24T06:30:51.105Z"
},
{
"id": 411,
"userId": 203,
"name": "Main Checking",
"type": "checking",
"balance": 9611.02,
"currency": "AUD",
"isActive": true,
"createdAt": "2026-03-03T13:11:28.885Z"
}
],
"meta": {
"page": 18,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=18&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=19&limit=24",
"prev": "/api/v1/accounts?page=17&limit=24"
}
}