example-data.com

accounts

accounts

Page 10 of 10.

userId
Elva Roberts @elva.roberts48
name
Travel Card
type
credit_card
balance
134.23
currency
GBP
isActive
true
createdAt
userId
Abdul Rau @abdul.rau
name
Auto Loan
type
loan
balance
-57438.03
currency
JPY
isActive
true
createdAt
userId
Abdul Rau @abdul.rau
name
Investment Portfolio
type
investment
balance
56381.47
currency
AUD
isActive
true
createdAt
userId
Abdul Rau @abdul.rau
name
401(k)
type
investment
balance
105058.08
currency
GBP
isActive
true
createdAt
userId
Vida Kunde-Koepp @vida_kunde-koepp95
name
Joint Checking
type
checking
balance
16124.97
currency
CAD
isActive
true
createdAt
userId
Vida Kunde-Koepp @vida_kunde-koepp95
name
Petty Cash
type
other
balance
4560.96
currency
CAD
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": 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",
    "next": "/api/v1/accounts?page=11",
    "prev": "/api/v1/accounts?page=9"
  }
}
Draftbit