transactions
transactions
Browse 2500 transactions records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- transactions/1
- transactions/2
- transactions/3
- transactions/4
- transactions/5
- transactions/6
- transactions/7
- transactions/8
- transactions/9
- transactions/10
- transactions/11
- transactions/12
- transactions/13
- transactions/14
- transactions/15
- transactions/16
- transactions/17
- transactions/18
- transactions/19
- transactions/20
- transactions/21
- transactions/22
- transactions/23
- transactions/24
-
#1
#1
Late payment fee
-
#2
#2
Monthly maintenance fee
-
#3
#3
Return credit
-
#4
#4
Interest charge
-
#5
#5
Wire transfer sent
-
#6
#6
ATM withdrawal
-
#7
#7
Bank transfer out
-
#8
#8
Wire transfer fee
-
#9
#9
Streaming service
-
#10
#10
Online purchase
-
#11
#11
Wire transfer received
-
#12
#12
Bank transfer out
-
#13
#13
Dividend payment
-
#14
#14
Bank transfer in
-
#15
#15
Subscription renewal
-
#16
#16
Bank transfer out
-
#17
#17
Direct deposit
-
#18
#18
Dividend payment
-
#19
#19
Refund credit
-
#20
#20
Purchase refund
-
#21
#21
Utility bill payment
-
#22
#22
Return credit
-
#23
#23
Merchant refund
-
#24
#24
Freelance payment received
- accountId
- accounts/447
- kind
- fee
- amount
- -3421.61
- currency
- USD
- description
- Late payment fee
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/104
- kind
- fee
- amount
- -4413.37
- currency
- CAD
- description
- Monthly maintenance fee
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/106
- kind
- refund
- amount
- 9376.86
- currency
- AUD
- description
- Return credit
- status
- pending
- occurredAt
- createdAt
- accountId
- accounts/119
- kind
- interest
- amount
- 2754.46
- currency
- JPY
- description
- Interest charge
- status
- failed
- occurredAt
- createdAt
- accountId
- accounts/3
- kind
- withdrawal
- amount
- -3655.11
- currency
- JPY
- description
- Wire transfer sent
- status
- completed
- occurredAt
- createdAt
- accountId
- accounts/406
- kind
- withdrawal
- amount
- -4032.21
- currency
- GBP
- description
- ATM withdrawal
- status
- failed
- occurredAt
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/transactions?limit=25"const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = await res.json();import type { Transaction, ListEnvelope } from "https://example-data.com/types/transactions.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Transaction>;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"accountId": 447,
"kind": "fee",
"amount": -3421.61,
"currency": "USD",
"description": "Late payment fee",
"status": "completed",
"occurredAt": "2024-10-17T08:57:01.284Z",
"createdAt": "2024-10-17T08:57:40.581Z"
},
{
"id": 2,
"accountId": 104,
"kind": "fee",
"amount": -4413.37,
"currency": "CAD",
"description": "Monthly maintenance fee",
"status": "pending",
"occurredAt": "2025-08-06T06:18:19.136Z",
"createdAt": "2025-08-06T06:19:07.383Z"
},
{
"id": 3,
"accountId": 106,
"kind": "refund",
"amount": 9376.86,
"currency": "AUD",
"description": "Return credit",
"status": "pending",
"occurredAt": "2025-02-01T11:21:18.240Z",
"createdAt": "2025-02-01T11:21:30.455Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 2500,
"totalPages": 100
},
"links": {
"self": "/api/v1/transactions?page=1",
"first": "/api/v1/transactions?page=1",
"last": "/api/v1/transactions?page=100",
"next": "/api/v1/transactions?page=2",
"prev": null
}
}