accounts
accounts
Page 21 of 22.
Overview
-
Auto Loan
#481
-
Personal Loan
#482
-
Joint Checking
#483
-
Flexible Spending
#484
-
Business Card
#485
-
Main Checking
#486
-
Investment Portfolio
#487
-
Main Checking
#488
-
Rewards Card
#489
-
Travel Card
#490
-
Primary Checking
#491
-
Flexible Spending
#492
-
Business Card
#493
-
Emergency Fund
#494
-
Student Loan
#495
-
Cash Back Card
#496
-
Home Mortgage
#497
-
Everyday Checking
#498
-
Emergency Fund
#499
-
Auto Loan
#500
-
Brokerage Account
#501
-
Vacation Savings
#502
-
401(k)
#503
-
Student Loan
#504
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": 481,
"userId": 239,
"name": "Auto Loan",
"type": "loan",
"balance": -282663.28,
"currency": "EUR",
"isActive": true,
"createdAt": "2026-03-18T16:50:58.475Z"
},
{
"id": 482,
"userId": 239,
"name": "Personal Loan",
"type": "loan",
"balance": -407534.45,
"currency": "AUD",
"isActive": true,
"createdAt": "2026-05-03T16:20:32.562Z"
},
{
"id": 483,
"userId": 240,
"name": "Joint Checking",
"type": "checking",
"balance": 9416.5,
"currency": "USD",
"isActive": true,
"createdAt": "2025-06-25T15:26:47.077Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=21&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=22&limit=24",
"prev": "/api/v1/accounts?page=20&limit=24"
}
}