example-data.com

accounts

accounts

Page 7 of 10.

userId
Ryan Conroy @ryan_conroy
name
Cash Back Card
type
credit_card
balance
-3200.18
currency
CNY
isActive
true
createdAt
userId
Ryan Conroy @ryan_conroy
name
Business Card
type
credit_card
balance
112.72
currency
GBP
isActive
true
createdAt
userId
Terence Lemke @terence.lemke85
name
Joint Checking
type
checking
balance
1542.55
currency
GBP
isActive
true
createdAt
userId
Terence Lemke @terence.lemke85
name
HSA Account
type
other
balance
19725.92
currency
CAD
isActive
true
createdAt
userId
Terence Lemke @terence.lemke85
name
Auto Loan
type
loan
balance
-6921.28
currency
USD
isActive
true
createdAt
userId
Candace Mueller @candace.mueller
name
Main Checking
type
checking
balance
59.07
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": 145,
      "userId": 73,
      "name": "Cash Back Card",
      "type": "credit_card",
      "balance": -3200.18,
      "currency": "CNY",
      "isActive": true,
      "createdAt": "2025-01-27T20:38:21.516Z"
    },
    {
      "id": 146,
      "userId": 73,
      "name": "Business Card",
      "type": "credit_card",
      "balance": 112.72,
      "currency": "GBP",
      "isActive": true,
      "createdAt": "2024-10-25T04:33:06.105Z"
    },
    {
      "id": 147,
      "userId": 74,
      "name": "Joint Checking",
      "type": "checking",
      "balance": 1542.55,
      "currency": "GBP",
      "isActive": true,
      "createdAt": "2025-09-29T08:28:14.437Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 507,
    "totalPages": 22
  },
  "links": {
    "self": "/api/v1/accounts?page=7",
    "next": "/api/v1/accounts?page=8",
    "prev": "/api/v1/accounts?page=6"
  }
}
Draftbit