example-data.com

accounts

accounts

Page 8 of 10.

userId
Phyllis Hyatt @phyllis_hyatt83
name
Primary Checking
type
checking
balance
18026.24
currency
CAD
isActive
true
createdAt
userId
Colby Kovacek @colby_kovacek40
name
Personal Loan
type
loan
balance
-67963.72
currency
EUR
isActive
true
createdAt
userId
Colby Kovacek @colby_kovacek40
name
Home Mortgage
type
loan
balance
-145111.66
currency
AUD
isActive
true
createdAt
userId
Mable West @mable_west
name
Travel Card
type
credit_card
balance
-1656.6
currency
EUR
isActive
true
createdAt
userId
Michaela Feeney @michaela_feeney46
name
Main Checking
type
checking
balance
9153.12
currency
USD
isActive
true
createdAt
userId
Michaela Feeney @michaela_feeney46
name
Brokerage Account
type
investment
balance
61429.02
currency
EUR
isActive
true
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/accounts?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/accounts?limit=25"
);
const { data, meta } = await res.json();
import type { Account, ListEnvelope } from "https://example-data.com/types/accounts.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/accounts?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Account>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/accounts",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 169,
      "userId": 84,
      "name": "Primary Checking",
      "type": "checking",
      "balance": 18026.24,
      "currency": "CAD",
      "isActive": true,
      "createdAt": "2025-05-12T09:12:59.833Z"
    },
    {
      "id": 170,
      "userId": 85,
      "name": "Personal Loan",
      "type": "loan",
      "balance": -67963.72,
      "currency": "EUR",
      "isActive": true,
      "createdAt": "2026-01-20T04:38:40.291Z"
    },
    {
      "id": 171,
      "userId": 85,
      "name": "Home Mortgage",
      "type": "loan",
      "balance": -145111.66,
      "currency": "AUD",
      "isActive": true,
      "createdAt": "2025-08-24T00:13:24.435Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 507,
    "totalPages": 22
  },
  "links": {
    "self": "/api/v1/accounts?page=8",
    "next": "/api/v1/accounts?page=9",
    "prev": "/api/v1/accounts?page=7"
  }
}
Draftbit