accounts
accounts
Page 14 of 22.
Overview
-
Everyday Checking
#313
-
Roth IRA
#314
-
Personal Loan
#315
-
Vacation Savings
#316
-
Auto Loan
#317
-
Business Card
#318
-
Emergency Fund
#319
-
Student Loan
#320
-
Business Card
#321
-
Main Checking
#322
-
Brokerage Account
#323
-
Main Checking
#324
-
401(k)
#325
-
Cash Back Card
#326
-
401(k)
#327
-
High-Yield Savings
#328
-
Brokerage Account
#329
-
Gift Card Balance
#330
-
Emergency Fund
#331
-
Travel Card
#332
-
Flexible Spending
#333
-
Student Loan
#334
-
Roth IRA
#335
-
High-Yield Savings
#336
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": 313,
"userId": 153,
"name": "Everyday Checking",
"type": "checking",
"balance": 16500.88,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-12-16T06:10:49.795Z"
},
{
"id": 314,
"userId": 154,
"name": "Roth IRA",
"type": "investment",
"balance": 188843.6,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-07-02T06:00:32.546Z"
},
{
"id": 315,
"userId": 154,
"name": "Personal Loan",
"type": "loan",
"balance": -179105.56,
"currency": "USD",
"isActive": true,
"createdAt": "2025-01-15T15:01:56.452Z"
}
],
"meta": {
"page": 14,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=14&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=15&limit=24",
"prev": "/api/v1/accounts?page=13&limit=24"
}
}