example-data.com

accounts

accounts

Page 6 of 10.

userId
Merl Jenkins @merl.jenkins6
name
HSA Account
type
other
balance
994.77
currency
CAD
isActive
true
createdAt
userId
Jarrell Flatley @jarrell_flatley39
name
Everyday Checking
type
checking
balance
18194.54
currency
USD
isActive
true
createdAt
userId
Jarrell Flatley @jarrell_flatley39
name
Primary Checking
type
checking
balance
5550.59
currency
AUD
isActive
true
createdAt
userId
Jarrell Flatley @jarrell_flatley39
name
Investment Portfolio
type
investment
balance
231517.69
currency
GBP
isActive
true
createdAt
userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
name
Business Card
type
credit_card
balance
387.1
currency
GBP
isActive
true
createdAt
userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
name
Roth IRA
type
investment
balance
229586.22
currency
USD
isActive
false
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": 121,
      "userId": 60,
      "name": "HSA Account",
      "type": "other",
      "balance": 994.77,
      "currency": "CAD",
      "isActive": true,
      "createdAt": "2025-05-14T20:39:27.640Z"
    },
    {
      "id": 122,
      "userId": 61,
      "name": "Everyday Checking",
      "type": "checking",
      "balance": 18194.54,
      "currency": "USD",
      "isActive": true,
      "createdAt": "2024-05-29T04:13:36.695Z"
    },
    {
      "id": 123,
      "userId": 61,
      "name": "Primary Checking",
      "type": "checking",
      "balance": 5550.59,
      "currency": "AUD",
      "isActive": true,
      "createdAt": "2024-09-08T18:23:23.047Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 507,
    "totalPages": 22
  },
  "links": {
    "self": "/api/v1/accounts?page=6",
    "next": "/api/v1/accounts?page=7",
    "prev": "/api/v1/accounts?page=5"
  }
}
Draftbit