accounts
accounts
Page 22 of 22.
Overview
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": 505,
"userId": 250,
"name": "Emergency Fund",
"type": "savings",
"balance": 46712.97,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-12-18T18:59:11.070Z"
},
{
"id": 506,
"userId": 250,
"name": "Gift Card Balance",
"type": "other",
"balance": 10001.03,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-08-19T18:33:25.906Z"
},
{
"id": 507,
"userId": 250,
"name": "Home Mortgage",
"type": "loan",
"balance": -254563.15,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-01-18T13:41:46.274Z"
}
],
"meta": {
"page": 22,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=22&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": null,
"prev": "/api/v1/accounts?page=21&limit=24"
}
}