accounts
accounts
Page 10 of 22.
Overview
-
Travel Card
#217
-
Auto Loan
#218
-
Investment Portfolio
#219
-
401(k)
#220
-
Joint Checking
#221
-
Petty Cash
#222
-
Travel Card
#223
-
Home Mortgage
#224
-
Cash Back Card
#225
-
Personal Loan
#226
-
Gift Card Balance
#227
-
Joint Checking
#228
-
Roth IRA
#229
-
Joint Checking
#230
-
401(k)
#231
-
Primary Checking
#232
-
Travel Card
#233
-
Business Card
#234
-
Petty Cash
#235
-
Primary Checking
#236
-
401(k)
#237
-
Everyday Checking
#238
-
Cash Back Card
#239
-
Gift Card Balance
#240
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": 217,
"userId": 107,
"name": "Travel Card",
"type": "credit_card",
"balance": 134.23,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-06-04T15:32:02.525Z"
},
{
"id": 218,
"userId": 108,
"name": "Auto Loan",
"type": "loan",
"balance": -57438.03,
"currency": "JPY",
"isActive": true,
"createdAt": "2026-02-07T02:05:19.731Z"
},
{
"id": 219,
"userId": 108,
"name": "Investment Portfolio",
"type": "investment",
"balance": 56381.47,
"currency": "AUD",
"isActive": true,
"createdAt": "2026-05-01T11:18:37.802Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=10&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=11&limit=24",
"prev": "/api/v1/accounts?page=9&limit=24"
}
}