example-data.com
Menu
Browse docs and collections

accounts

accounts

Page 4 of 22.

Overview

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": 73,
      "userId": 37,
      "name": "Retirement Savings",
      "type": "savings",
      "balance": 17763.18,
      "currency": "CHF",
      "isActive": true,
      "createdAt": "2024-08-09T11:29:13.211Z"
    },
    {
      "id": 74,
      "userId": 38,
      "name": "High-Yield Savings",
      "type": "savings",
      "balance": 41730.49,
      "currency": "CNY",
      "isActive": true,
      "createdAt": "2025-08-10T23:58:19.374Z"
    },
    {
      "id": 75,
      "userId": 38,
      "name": "Brokerage Account",
      "type": "investment",
      "balance": 8517.16,
      "currency": "JPY",
      "isActive": true,
      "createdAt": "2025-06-10T21:14:52.078Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 507,
    "totalPages": 22
  },
  "links": {
    "self": "/api/v1/accounts?page=4&limit=24",
    "first": "/api/v1/accounts?page=1&limit=24",
    "last": "/api/v1/accounts?page=22&limit=24",
    "next": "/api/v1/accounts?page=5&limit=24",
    "prev": "/api/v1/accounts?page=3&limit=24"
  }
}