example-data.com

accounts

accounts

Browse 507 accounts records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Charlene Roberts @charlene_roberts
name
Emergency Fund
type
savings
balance
5751.77
currency
EUR
isActive
true
createdAt
userId
Charlene Roberts @charlene_roberts
name
Rewards Card
type
credit_card
balance
-2669.95
currency
GBP
isActive
true
createdAt
userId
Charlene Roberts @charlene_roberts
name
Everyday Checking
type
checking
balance
4936.13
currency
JPY
isActive
true
createdAt
userId
Amina King @amina_king41
name
Travel Card
type
credit_card
balance
-3399.7
currency
JPY
isActive
false
createdAt
userId
Amina King @amina_king41
name
Everyday Checking
type
checking
balance
315.9
currency
CHF
isActive
true
createdAt
userId
Conner Bernhard @conner.bernhard33
name
Auto Loan
type
loan
balance
-232013.43
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": 1,
      "userId": 1,
      "name": "Emergency Fund",
      "type": "savings",
      "balance": 5751.77,
      "currency": "EUR",
      "isActive": true,
      "createdAt": "2025-09-16T19:40:55.373Z"
    },
    {
      "id": 2,
      "userId": 1,
      "name": "Rewards Card",
      "type": "credit_card",
      "balance": -2669.95,
      "currency": "GBP",
      "isActive": true,
      "createdAt": "2025-07-21T13:56:30.180Z"
    },
    {
      "id": 3,
      "userId": 1,
      "name": "Everyday Checking",
      "type": "checking",
      "balance": 4936.13,
      "currency": "JPY",
      "isActive": true,
      "createdAt": "2024-09-12T12:06:42.598Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 507,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/accounts?page=1",
    "first": "/api/v1/accounts?page=1",
    "last": "/api/v1/accounts?page=21",
    "next": "/api/v1/accounts?page=2",
    "prev": null
  }
}

View full response →

Draftbit