accounts
accounts
Page 12 of 22.
Overview
-
Student Loan
#265
-
Cash Back Card
#266
-
High-Yield Savings
#267
-
Cash Back Card
#268
-
High-Yield Savings
#269
-
401(k)
#270
-
High-Yield Savings
#271
-
401(k)
#272
-
Investment Portfolio
#273
-
Emergency Fund
#274
-
Primary Checking
#275
-
Cash Back Card
#276
-
Retirement Savings
#277
-
Investment Portfolio
#278
-
Roth IRA
#279
-
Emergency Fund
#280
-
Retirement Savings
#281
-
Rewards Card
#282
-
Personal Loan
#283
-
High-Yield Savings
#284
-
Roth IRA
#285
-
Primary Checking
#286
-
Flexible Spending
#287
-
Primary Checking
#288
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": 265,
"userId": 130,
"name": "Student Loan",
"type": "loan",
"balance": -329160.93,
"currency": "AUD",
"isActive": true,
"createdAt": "2024-06-17T14:11:07.605Z"
},
{
"id": 266,
"userId": 130,
"name": "Cash Back Card",
"type": "credit_card",
"balance": -278.01,
"currency": "CHF",
"isActive": true,
"createdAt": "2024-09-08T05:31:55.186Z"
},
{
"id": 267,
"userId": 131,
"name": "High-Yield Savings",
"type": "savings",
"balance": 30348.73,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-09-04T02:01:14.479Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=12&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=13&limit=24",
"prev": "/api/v1/accounts?page=11&limit=24"
}
}