accounts
accounts
Page 7 of 22.
Overview
-
Cash Back Card
#145
-
Business Card
#146
-
Joint Checking
#147
-
HSA Account
#148
-
Auto Loan
#149
-
Main Checking
#150
-
Business Card
#151
-
Everyday Checking
#152
-
Home Mortgage
#153
-
Rewards Card
#154
-
Gift Card Balance
#155
-
Gift Card Balance
#156
-
Vacation Savings
#157
-
High-Yield Savings
#158
-
Auto Loan
#159
-
Business Card
#160
-
Business Card
#161
-
Business Card
#162
-
Vacation Savings
#163
-
Joint Checking
#164
-
Joint Checking
#165
-
Retirement Savings
#166
-
Business Card
#167
-
Flexible Spending
#168
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": 145,
"userId": 73,
"name": "Cash Back Card",
"type": "credit_card",
"balance": -3200.18,
"currency": "CNY",
"isActive": true,
"createdAt": "2025-01-27T20:38:21.516Z"
},
{
"id": 146,
"userId": 73,
"name": "Business Card",
"type": "credit_card",
"balance": 112.72,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-10-25T04:33:06.105Z"
},
{
"id": 147,
"userId": 74,
"name": "Joint Checking",
"type": "checking",
"balance": 1542.55,
"currency": "GBP",
"isActive": true,
"createdAt": "2025-09-29T08:28:14.437Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 507,
"totalPages": 22
},
"links": {
"self": "/api/v1/accounts?page=7&limit=24",
"first": "/api/v1/accounts?page=1&limit=24",
"last": "/api/v1/accounts?page=22&limit=24",
"next": "/api/v1/accounts?page=8&limit=24",
"prev": "/api/v1/accounts?page=6&limit=24"
}
}