accounts
accounts
Page 6 of 22.
Overview
-
HSA Account
#121
-
Everyday Checking
#122
-
Primary Checking
#123
-
Investment Portfolio
#124
-
Business Card
#125
-
Roth IRA
#126
-
Auto Loan
#127
-
Primary Checking
#128
-
Primary Checking
#129
-
Home Mortgage
#130
-
High-Yield Savings
#131
-
Student Loan
#132
-
Everyday Checking
#133
-
Everyday Checking
#134
-
Emergency Fund
#135
-
Investment Portfolio
#136
-
Flexible Spending
#137
-
Emergency Fund
#138
-
Personal Loan
#139
-
Investment Portfolio
#140
-
Investment Portfolio
#141
-
High-Yield Savings
#142
-
Personal Loan
#143
-
Travel Card
#144
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": 121,
"userId": 60,
"name": "HSA Account",
"type": "other",
"balance": 994.77,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-05-14T20:39:27.640Z"
},
{
"id": 122,
"userId": 61,
"name": "Everyday Checking",
"type": "checking",
"balance": 18194.54,
"currency": "USD",
"isActive": true,
"createdAt": "2024-05-29T04:13:36.695Z"
},
{
"id": 123,
"userId": 61,
"name": "Primary Checking",
"type": "checking",
"balance": 5550.59,
"currency": "AUD",
"isActive": true,
"createdAt": "2024-09-08T18:23:23.047Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=6&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=7&limit=24",
"prev": "/api/v1/accounts?page=5&limit=24"
}
}