invoices
invoices
Page 6 of 10.
- invoices/121
- invoices/122
- invoices/123
- invoices/124
- invoices/125
- invoices/126
- invoices/127
- invoices/128
- invoices/129
- invoices/130
- invoices/131
- invoices/132
- invoices/133
- invoices/134
- invoices/135
- invoices/136
- invoices/137
- invoices/138
- invoices/139
- invoices/140
- invoices/141
- invoices/142
- invoices/143
- invoices/144
- fromUserId
- 120
- toUserId
- 180
- invoiceNumber
- INV-2025-0121
- status
- overdue
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 13110.3
- tax
- 1311.03
- total
- 14421.33
- currency
- USD
- lineItems
-
[ { "description": "Research services", "quantity": 16, "unitPrice": 366.37, "lineTotal": 5861.92 }, { "description": "Consulting services", "quantity": 5, "unitPrice": 226.94, "lineTotal": 1134.7 }, { "description": "Software development", "quantity": 12, "unitPrice": 209.38, "lineTotal": 2512.56 }, { "description": "Implementation services", "quantity": 8, "unitPrice": 450.14, "lineTotal": 3601.12 } ] - createdAt
- fromUserId
- 107
- toUserId
- 170
- invoiceNumber
- INV-2024-0122
- status
- viewed
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 22658.08
- tax
- 1812.65
- total
- 24470.73
- currency
- GBP
- lineItems
-
[ { "description": "Content writing", "quantity": 15, "unitPrice": 90.26, "lineTotal": 1353.9 }, { "description": "Legal review", "quantity": 35, "unitPrice": 251.28, "lineTotal": 8794.8 }, { "description": "Photography services", "quantity": 1, "unitPrice": 211.07, "lineTotal": 211.07 }, { "description": "Documentation", "quantity": 2, "unitPrice": 384.61, "lineTotal": 769.22 }, { "description": "Maintenance contract", "quantity": 23, "unitPrice": 354.49, "lineTotal": 8153.27 }, { "description": "Data analysis", "quantity": 14, "unitPrice": 241.13, "lineTotal": 3375.82 } ] - createdAt
- fromUserId
- 158
- toUserId
- 167
- invoiceNumber
- INV-2026-0123
- status
- draft
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 12399.71
- tax
- 1859.96
- total
- 14259.67
- currency
- AUD
- lineItems
-
[ { "description": "Consulting services", "quantity": 8, "unitPrice": 333, "lineTotal": 2664 }, { "description": "Content writing", "quantity": 7, "unitPrice": 169.68, "lineTotal": 1187.76 }, { "description": "Hardware supply", "quantity": 23, "unitPrice": 371.65, "lineTotal": 8547.95 } ] - createdAt
- fromUserId
- 216
- toUserId
- 236
- invoiceNumber
- INV-2026-0124
- status
- sent
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 21681.67
- tax
- 1734.53
- total
- 23416.2
- currency
- CAD
- lineItems
-
[ { "description": "Legal review", "quantity": 37, "unitPrice": 350.03, "lineTotal": 12951.11 }, { "description": "Consulting services", "quantity": 40, "unitPrice": 212.36, "lineTotal": 8494.4 }, { "description": "Technical support", "quantity": 4, "unitPrice": 59.04, "lineTotal": 236.16 } ] - createdAt
- fromUserId
- 26
- toUserId
- 74
- invoiceNumber
- INV-2026-0125
- status
- paid
- issuedAt
- dueAt
- paidAt
- subtotal
- 18681.92
- tax
- 1868.19
- total
- 20550.11
- currency
- USD
- lineItems
-
[ { "description": "Photography services", "quantity": 5, "unitPrice": 122.28, "lineTotal": 611.4 }, { "description": "License fee", "quantity": 32, "unitPrice": 241.92, "lineTotal": 7741.44 }, { "description": "Hardware supply", "quantity": 11, "unitPrice": 20.08, "lineTotal": 220.88 }, { "description": "Training session", "quantity": 30, "unitPrice": 336.94, "lineTotal": 10108.2 } ] - createdAt
- fromUserId
- 196
- toUserId
- 77
- invoiceNumber
- INV-2024-0126
- status
- sent
- issuedAt
- dueAt
- paidAt
- —
- subtotal
- 48836.56
- tax
- 3906.92
- total
- 52743.48
- currency
- GBP
- lineItems
-
[ { "description": "Legal review", "quantity": 15, "unitPrice": 362.6, "lineTotal": 5439 }, { "description": "License fee", "quantity": 40, "unitPrice": 494.14, "lineTotal": 19765.6 }, { "description": "System integration", "quantity": 37, "unitPrice": 465.48, "lineTotal": 17222.76 }, { "description": "Research services", "quantity": 35, "unitPrice": 183.12, "lineTotal": 6409.2 } ] - 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": 121,
"fromUserId": 120,
"toUserId": 180,
"invoiceNumber": "INV-2025-0121",
"status": "overdue",
"issuedAt": "2025-03-14T20:28:46.495Z",
"dueAt": "2025-04-06T20:28:46.495Z",
"paidAt": null,
"subtotal": 13110.3,
"tax": 1311.03,
"total": 14421.33,
"currency": "USD",
"lineItems": [
{
"description": "Research services",
"quantity": 16,
"unitPrice": 366.37,
"lineTotal": 5861.92
},
{
"description": "Consulting services",
"quantity": 5,
"unitPrice": 226.94,
"lineTotal": 1134.7
},
{
"description": "Software development",
"quantity": 12,
"unitPrice": 209.38,
"lineTotal": 2512.56
},
{
"description": "Implementation services",
"quantity": 8,
"unitPrice": 450.14,
"lineTotal": 3601.12
}
],
"createdAt": "2025-03-14T11:37:54.327Z"
},
{
"id": 122,
"fromUserId": 107,
"toUserId": 170,
"invoiceNumber": "INV-2024-0122",
"status": "viewed",
"issuedAt": "2024-12-21T13:11:09.170Z",
"dueAt": "2025-01-04T13:11:09.170Z",
"paidAt": null,
"subtotal": 22658.08,
"tax": 1812.65,
"total": 24470.73,
"currency": "GBP",
"lineItems": [
{
"description": "Content writing",
"quantity": 15,
"unitPrice": 90.26,
"lineTotal": 1353.9
},
{
"description": "Legal review",
"quantity": 35,
"unitPrice": 251.28,
"lineTotal": 8794.8
},
{
"description": "Photography services",
"quantity": 1,
"unitPrice": 211.07,
"lineTotal": 211.07
},
{
"description": "Documentation",
"quantity": 2,
"unitPrice": 384.61,
"lineTotal": 769.22
},
{
"description": "Maintenance contract",
"quantity": 23,
"unitPrice": 354.49,
"lineTotal": 8153.27
},
{
"description": "Data analysis",
"quantity": 14,
"unitPrice": 241.13,
"lineTotal": 3375.82
}
],
"createdAt": "2024-12-21T04:01:01.685Z"
},
{
"id": 123,
"fromUserId": 158,
"toUserId": 167,
"invoiceNumber": "INV-2026-0123",
"status": "draft",
"issuedAt": "2026-01-08T19:04:57.763Z",
"dueAt": "2026-02-27T19:04:57.763Z",
"paidAt": null,
"subtotal": 12399.71,
"tax": 1859.96,
"total": 14259.67,
"currency": "AUD",
"lineItems": [
{
"description": "Consulting services",
"quantity": 8,
"unitPrice": 333,
"lineTotal": 2664
},
{
"description": "Content writing",
"quantity": 7,
"unitPrice": 169.68,
"lineTotal": 1187.76
},
{
"description": "Hardware supply",
"quantity": 23,
"unitPrice": 371.65,
"lineTotal": 8547.95
}
],
"createdAt": "2026-01-07T23:57:36.583Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/invoices?page=6",
"next": "/api/v1/invoices?page=7",
"prev": "/api/v1/invoices?page=5"
}
}