Bank-style transactions with account ID, type (credit/debit), category, and running balance. Free to use, no attribution required — copy it, download it, or open it directly in the JSON Formatter. Runs entirely in your browser.
[
{
"id": "txn_001",
"accountId": "acc_111",
"type": "credit",
"amount": 5000,
"currency": "USD",
"category": "salary",
"description": "Monthly salary deposit",
"balance": 5000,
"status": "completed",
"timestamp": "2024-01-01T09:00:00Z"
},
{
"id": "txn_002",
"accountId": "acc_111",
"type": "debit",
"amount": 1200,
"currency": "USD",
"category": "housing",
"description": "Rent payment - January",
"balance": 3800,
"status": "completed",
"timestamp": "2024-01-02T10:00:00Z"
},
{
"id": "txn_003",
"accountId": "acc_111",
"type": "debit",
"amount": 89.99,
"currency": "USD",
"category": "utilities",
"description": "Internet bill",
"balance": 3710.01,
"status": "completed",
"timestamp": "2024-01-03T11:30:00Z"
},
{
"id": "txn_004",
"accountId": "acc_111",
"type": "debit",
"amount": 234.56,
"currency": "USD",
"category": "groceries",
"description": "Whole Foods Market",
"balance": 3475.45,
"status": "completed",
"timestamp": "2024-01-05T18:00:00Z"
},
{
"id": "txn_005",
"accountId": "acc_111",
"type": "debit",
"amount": 49.99,
"currency": "USD",
"category": "subscription",
"description": "Streaming service - monthly",
"balance": 3425.46,
"status": "completed",
"timestamp": "2024-01-06T00:01:00Z"
},
{
"id": "txn_006",
"accountId": "acc_222",
"type": "credit",
"amount": 3200,
"currency": "USD",
"category": "salary",
"description": "Bi-weekly paycheck",
"balance": 3200,
"status": "completed",
"timestamp": "2024-01-01T09:00:00Z"
},
{
"id": "txn_007",
"accountId": "acc_222",
"type": "debit",
"amount": 45.2,
"currency": "USD",
"category": "dining",
"description": "Restaurant - dinner",
"balance": 3154.8,
"status": "completed",
"timestamp": "2024-01-07T20:30:00Z"
},
{
"id": "txn_008",
"accountId": "acc_222",
"type": "debit",
"amount": 1471.48,
"currency": "USD",
"category": "shopping",
"description": "Electronics order #ord_001",
"balance": 1683.32,
"status": "completed",
"timestamp": "2024-01-08T15:00:00Z"
},
{
"id": "txn_009",
"accountId": "acc_111",
"type": "credit",
"amount": 250,
"currency": "USD",
"category": "transfer",
"description": "Transfer from savings",
"balance": 3675.46,
"status": "pending",
"timestamp": "2024-01-10T12:00:00Z"
},
{
"id": "txn_010",
"accountId": "acc_222",
"type": "debit",
"amount": 197.8,
"currency": "USD",
"category": "shopping",
"description": "Electronics order #ord_002",
"balance": 1485.52,
"status": "pending",
"timestamp": "2024-01-10T14:30:00Z"
}
]