example-data.com

accounts

accounts

Page 9 of 10.

userId
Esperanza Casper @esperanza_casper
name
Home Mortgage
type
loan
balance
-488224.88
currency
GBP
isActive
true
createdAt
userId
Tabitha McKenzie @tabitha_mckenzie
name
Vacation Savings
type
savings
balance
22219.63
currency
CNY
isActive
true
createdAt
userId
Tabitha McKenzie @tabitha_mckenzie
name
Personal Loan
type
loan
balance
-470432
currency
GBP
isActive
true
createdAt
userId
Tabitha McKenzie @tabitha_mckenzie
name
Personal Loan
type
loan
balance
-11429.87
currency
CNY
isActive
true
createdAt
userId
Whitney O'Reilly @whitney.oreilly
name
Auto Loan
type
loan
balance
-148479.21
currency
CNY
isActive
true
createdAt
userId
Whitney O'Reilly @whitney.oreilly
name
Main Checking
type
checking
balance
13379.39
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": 193,
      "userId": 97,
      "name": "Home Mortgage",
      "type": "loan",
      "balance": -488224.88,
      "currency": "GBP",
      "isActive": true,
      "createdAt": "2026-03-31T06:12:11.805Z"
    },
    {
      "id": 194,
      "userId": 98,
      "name": "Vacation Savings",
      "type": "savings",
      "balance": 22219.63,
      "currency": "CNY",
      "isActive": true,
      "createdAt": "2024-08-03T08:01:19.523Z"
    },
    {
      "id": 195,
      "userId": 98,
      "name": "Personal Loan",
      "type": "loan",
      "balance": -470432,
      "currency": "GBP",
      "isActive": true,
      "createdAt": "2025-12-11T03:50:14.330Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 507,
    "totalPages": 22
  },
  "links": {
    "self": "/api/v1/accounts?page=9",
    "next": "/api/v1/accounts?page=10",
    "prev": "/api/v1/accounts?page=8"
  }
}
Draftbit