invoices
invoices
Page 5 of 10.
- invoices/97
- invoices/98
- invoices/99
- invoices/100
- invoices/101
- invoices/102
- invoices/103
- invoices/104
- invoices/105
- invoices/106
- invoices/107
- invoices/108
- invoices/109
- invoices/110
- invoices/111
- invoices/112
- invoices/113
- invoices/114
- invoices/115
- invoices/116
- invoices/117
- invoices/118
- invoices/119
- invoices/120
- fromUserId
- 25
- toUserId
- 95
- invoiceNumber
- INV-2026-0097
- status
- sent
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 30916.92
- tax
- 4637.54
- total
- 35554.46
- currency
- EUR
- lineItems
-
[ { "description": "Research services", "quantity": 38, "unitPrice": 231.21, "lineTotal": 8785.98 }, { "description": "License fee", "quantity": 7, "unitPrice": 401.14, "lineTotal": 2807.98 }, { "description": "Research services", "quantity": 26, "unitPrice": 457.72, "lineTotal": 11900.72 }, { "description": "Research services", "quantity": 12, "unitPrice": 48.64, "lineTotal": 583.68 }, { "description": "Technical support", "quantity": 18, "unitPrice": 379.92, "lineTotal": 6838.56 } ] - createdAt
- fromUserId
- 40
- toUserId
- 202
- invoiceNumber
- INV-2025-0098
- status
- sent
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 22828.69
- tax
- 0
- total
- 22828.69
- currency
- GBP
- lineItems
-
[ { "description": "Data analysis", "quantity": 5, "unitPrice": 92.31, "lineTotal": 461.55 }, { "description": "Accounting services", "quantity": 4, "unitPrice": 464, "lineTotal": 1856 }, { "description": "Training session", "quantity": 16, "unitPrice": 392.78, "lineTotal": 6284.48 }, { "description": "Legal review", "quantity": 29, "unitPrice": 256.98, "lineTotal": 7452.42 }, { "description": "Design work", "quantity": 24, "unitPrice": 282.26, "lineTotal": 6774.24 } ] - createdAt
- fromUserId
- 234
- toUserId
- 71
- invoiceNumber
- INV-2024-0099
- status
- viewed
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 34695.22
- tax
- 1734.76
- total
- 36429.98
- currency
- AUD
- lineItems
-
[ { "description": "Software development", "quantity": 23, "unitPrice": 345.67, "lineTotal": 7950.41 }, { "description": "Project management", "quantity": 37, "unitPrice": 480.18, "lineTotal": 17766.66 }, { "description": "Legal review", "quantity": 21, "unitPrice": 174.55, "lineTotal": 3665.55 }, { "description": "Software development", "quantity": 20, "unitPrice": 265.63, "lineTotal": 5312.6 } ] - createdAt
- fromUserId
- 150
- toUserId
- 64
- invoiceNumber
- INV-2026-0100
- status
- sent
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 22994.31
- tax
- 4598.86
- total
- 27593.17
- currency
- CAD
- lineItems
-
[ { "description": "Data analysis", "quantity": 19, "unitPrice": 351.29, "lineTotal": 6674.51 }, { "description": "Implementation services", "quantity": 2, "unitPrice": 384.79, "lineTotal": 769.58 }, { "description": "Research services", "quantity": 23, "unitPrice": 197.28, "lineTotal": 4537.44 }, { "description": "System integration", "quantity": 3, "unitPrice": 128.77, "lineTotal": 386.31 }, { "description": "Data analysis", "quantity": 29, "unitPrice": 366.43, "lineTotal": 10626.47 } ] - createdAt
- fromUserId
- 70
- toUserId
- 62
- invoiceNumber
- INV-2024-0101
- status
- sent
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 3111.68
- tax
- 622.34
- total
- 3734.02
- currency
- USD
- lineItems
-
[ { "description": "Documentation", "quantity": 14, "unitPrice": 182.68, "lineTotal": 2557.52 }, { "description": "System integration", "quantity": 24, "unitPrice": 23.09, "lineTotal": 554.16 } ] - createdAt
- fromUserId
- 146
- toUserId
- 38
- invoiceNumber
- INV-2024-0102
- status
- draft
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 25734.22
- tax
- 2058.74
- total
- 27792.96
- currency
- EUR
- lineItems
-
[ { "description": "Software development", "quantity": 38, "unitPrice": 42.77, "lineTotal": 1625.26 }, { "description": "Hardware supply", "quantity": 6, "unitPrice": 246.47, "lineTotal": 1478.82 }, { "description": "Content writing", "quantity": 12, "unitPrice": 190.74, "lineTotal": 2288.88 }, { "description": "Accounting services", "quantity": 22, "unitPrice": 55.32, "lineTotal": 1217.04 }, { "description": "Software development", "quantity": 36, "unitPrice": 343.44, "lineTotal": 12363.84 }, { "description": "License fee", "quantity": 22, "unitPrice": 307.29, "lineTotal": 6760.38 } ] - createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/invoices?limit=25"const res = await fetch(
"https://example-data.com/api/v1/invoices?limit=25"
);
const { data, meta } = await res.json();import type { Invoice, ListEnvelope } from "https://example-data.com/types/invoices.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/invoices?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Invoice>;import requests
res = requests.get(
"https://example-data.com/api/v1/invoices",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 97,
"fromUserId": 25,
"toUserId": 95,
"invoiceNumber": "INV-2026-0097",
"status": "sent",
"issuedAt": "2026-04-05T13:55:49.766Z",
"dueAt": "2026-04-25T13:55:49.766Z",
"paidAt": null,
"subtotal": 30916.92,
"tax": 4637.54,
"total": 35554.46,
"currency": "EUR",
"lineItems": [
{
"description": "Research services",
"quantity": 38,
"unitPrice": 231.21,
"lineTotal": 8785.98
},
{
"description": "License fee",
"quantity": 7,
"unitPrice": 401.14,
"lineTotal": 2807.98
},
{
"description": "Research services",
"quantity": 26,
"unitPrice": 457.72,
"lineTotal": 11900.72
},
{
"description": "Research services",
"quantity": 12,
"unitPrice": 48.64,
"lineTotal": 583.68
},
{
"description": "Technical support",
"quantity": 18,
"unitPrice": 379.92,
"lineTotal": 6838.56
}
],
"createdAt": "2026-04-05T04:00:09.225Z"
},
{
"id": 98,
"fromUserId": 40,
"toUserId": 202,
"invoiceNumber": "INV-2025-0098",
"status": "sent",
"issuedAt": "2025-03-27T20:37:45.187Z",
"dueAt": "2025-04-17T20:37:45.187Z",
"paidAt": null,
"subtotal": 22828.69,
"tax": 0,
"total": 22828.69,
"currency": "GBP",
"lineItems": [
{
"description": "Data analysis",
"quantity": 5,
"unitPrice": 92.31,
"lineTotal": 461.55
},
{
"description": "Accounting services",
"quantity": 4,
"unitPrice": 464,
"lineTotal": 1856
},
{
"description": "Training session",
"quantity": 16,
"unitPrice": 392.78,
"lineTotal": 6284.48
},
{
"description": "Legal review",
"quantity": 29,
"unitPrice": 256.98,
"lineTotal": 7452.42
},
{
"description": "Design work",
"quantity": 24,
"unitPrice": 282.26,
"lineTotal": 6774.24
}
],
"createdAt": "2025-03-27T11:13:51.221Z"
},
{
"id": 99,
"fromUserId": 234,
"toUserId": 71,
"invoiceNumber": "INV-2024-0099",
"status": "viewed",
"issuedAt": "2024-11-07T14:28:21.702Z",
"dueAt": "2024-12-22T14:28:21.702Z",
"paidAt": null,
"subtotal": 34695.22,
"tax": 1734.76,
"total": 36429.98,
"currency": "AUD",
"lineItems": [
{
"description": "Software development",
"quantity": 23,
"unitPrice": 345.67,
"lineTotal": 7950.41
},
{
"description": "Project management",
"quantity": 37,
"unitPrice": 480.18,
"lineTotal": 17766.66
},
{
"description": "Legal review",
"quantity": 21,
"unitPrice": 174.55,
"lineTotal": 3665.55
},
{
"description": "Software development",
"quantity": 20,
"unitPrice": 265.63,
"lineTotal": 5312.6
}
],
"createdAt": "2024-11-07T03:22:11.206Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/invoices?page=5",
"next": "/api/v1/invoices?page=6",
"prev": "/api/v1/invoices?page=4"
}
}