example-data.com

invoices

invoices

Page 2 of 10.

fromUserId
59
toUserId
128
invoiceNumber
INV-2026-0025
status
draft
issuedAt
dueAt
paidAt
subtotal
29687.46
tax
2375
total
32062.46
currency
USD
lineItems
[
  {
    "description": "Technical support",
    "quantity": 38,
    "unitPrice": 469.4,
    "lineTotal": 17837.2
  },
  {
    "description": "Data analysis",
    "quantity": 12,
    "unitPrice": 261.73,
    "lineTotal": 3140.76
  },
  {
    "description": "System integration",
    "quantity": 6,
    "unitPrice": 432.41,
    "lineTotal": 2594.46
  },
  {
    "description": "Documentation",
    "quantity": 10,
    "unitPrice": 395.63,
    "lineTotal": 3956.3
  },
  {
    "description": "Hardware supply",
    "quantity": 18,
    "unitPrice": 119.93,
    "lineTotal": 2158.74
  }
]
createdAt
fromUserId
219
toUserId
37
invoiceNumber
INV-2025-0026
status
overdue
issuedAt
dueAt
paidAt
subtotal
15856.92
tax
1268.55
total
17125.47
currency
USD
lineItems
[
  {
    "description": "Marketing services",
    "quantity": 32,
    "unitPrice": 158.43,
    "lineTotal": 5069.76
  },
  {
    "description": "Training session",
    "quantity": 6,
    "unitPrice": 55.21,
    "lineTotal": 331.26
  },
  {
    "description": "Research services",
    "quantity": 14,
    "unitPrice": 13.01,
    "lineTotal": 182.14
  },
  {
    "description": "Technical support",
    "quantity": 28,
    "unitPrice": 220.58,
    "lineTotal": 6176.24
  },
  {
    "description": "License fee",
    "quantity": 21,
    "unitPrice": 195.12,
    "lineTotal": 4097.52
  }
]
createdAt
fromUserId
79
toUserId
91
invoiceNumber
INV-2024-0027
status
paid
issuedAt
dueAt
paidAt
subtotal
17797.39
tax
0
total
17797.39
currency
EUR
lineItems
[
  {
    "description": "Maintenance contract",
    "quantity": 28,
    "unitPrice": 257.15,
    "lineTotal": 7200.2
  },
  {
    "description": "Software development",
    "quantity": 9,
    "unitPrice": 98.43,
    "lineTotal": 885.87
  },
  {
    "description": "Photography services",
    "quantity": 16,
    "unitPrice": 405.75,
    "lineTotal": 6492
  },
  {
    "description": "Project management",
    "quantity": 26,
    "unitPrice": 123.82,
    "lineTotal": 3219.32
  }
]
createdAt
fromUserId
155
toUserId
169
invoiceNumber
INV-2025-0028
status
paid
issuedAt
dueAt
paidAt
subtotal
13940.64
tax
0
total
13940.64
currency
AUD
lineItems
[
  {
    "description": "Technical support",
    "quantity": 31,
    "unitPrice": 124.42,
    "lineTotal": 3857.02
  },
  {
    "description": "Accounting services",
    "quantity": 1,
    "unitPrice": 177.24,
    "lineTotal": 177.24
  },
  {
    "description": "Training session",
    "quantity": 26,
    "unitPrice": 157.79,
    "lineTotal": 4102.54
  },
  {
    "description": "Research services",
    "quantity": 32,
    "unitPrice": 181.37,
    "lineTotal": 5803.84
  }
]
createdAt
fromUserId
158
toUserId
105
invoiceNumber
INV-2025-0029
status
paid
issuedAt
dueAt
paidAt
subtotal
2449.62
tax
244.96
total
2694.58
currency
AUD
lineItems
[
  {
    "description": "Research services",
    "quantity": 14,
    "unitPrice": 159.36,
    "lineTotal": 2231.04
  },
  {
    "description": "Hardware supply",
    "quantity": 1,
    "unitPrice": 218.58,
    "lineTotal": 218.58
  }
]
createdAt
fromUserId
232
toUserId
76
invoiceNumber
INV-2024-0030
status
paid
issuedAt
dueAt
paidAt
subtotal
3327.88
tax
0
total
3327.88
currency
USD
lineItems
[
  {
    "description": "Photography services",
    "quantity": 20,
    "unitPrice": 79.5,
    "lineTotal": 1590
  },
  {
    "description": "License fee",
    "quantity": 1,
    "unitPrice": 148.2,
    "lineTotal": 148.2
  },
  {
    "description": "System integration",
    "quantity": 8,
    "unitPrice": 198.71,
    "lineTotal": 1589.68
  }
]
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": 25,
      "fromUserId": 59,
      "toUserId": 128,
      "invoiceNumber": "INV-2026-0025",
      "status": "draft",
      "issuedAt": "2026-03-19T14:52:56.775Z",
      "dueAt": "2026-05-09T14:52:56.775Z",
      "paidAt": null,
      "subtotal": 29687.46,
      "tax": 2375,
      "total": 32062.46,
      "currency": "USD",
      "lineItems": [
        {
          "description": "Technical support",
          "quantity": 38,
          "unitPrice": 469.4,
          "lineTotal": 17837.2
        },
        {
          "description": "Data analysis",
          "quantity": 12,
          "unitPrice": 261.73,
          "lineTotal": 3140.76
        },
        {
          "description": "System integration",
          "quantity": 6,
          "unitPrice": 432.41,
          "lineTotal": 2594.46
        },
        {
          "description": "Documentation",
          "quantity": 10,
          "unitPrice": 395.63,
          "lineTotal": 3956.3
        },
        {
          "description": "Hardware supply",
          "quantity": 18,
          "unitPrice": 119.93,
          "lineTotal": 2158.74
        }
      ],
      "createdAt": "2026-03-19T07:00:44.471Z"
    },
    {
      "id": 26,
      "fromUserId": 219,
      "toUserId": 37,
      "invoiceNumber": "INV-2025-0026",
      "status": "overdue",
      "issuedAt": "2025-12-24T19:56:29.474Z",
      "dueAt": "2026-01-09T19:56:29.474Z",
      "paidAt": null,
      "subtotal": 15856.92,
      "tax": 1268.55,
      "total": 17125.47,
      "currency": "USD",
      "lineItems": [
        {
          "description": "Marketing services",
          "quantity": 32,
          "unitPrice": 158.43,
          "lineTotal": 5069.76
        },
        {
          "description": "Training session",
          "quantity": 6,
          "unitPrice": 55.21,
          "lineTotal": 331.26
        },
        {
          "description": "Research services",
          "quantity": 14,
          "unitPrice": 13.01,
          "lineTotal": 182.14
        },
        {
          "description": "Technical support",
          "quantity": 28,
          "unitPrice": 220.58,
          "lineTotal": 6176.24
        },
        {
          "description": "License fee",
          "quantity": 21,
          "unitPrice": 195.12,
          "lineTotal": 4097.52
        }
      ],
      "createdAt": "2025-12-24T11:38:25.025Z"
    },
    {
      "id": 27,
      "fromUserId": 79,
      "toUserId": 91,
      "invoiceNumber": "INV-2024-0027",
      "status": "paid",
      "issuedAt": "2024-08-02T04:36:20.170Z",
      "dueAt": "2024-08-11T04:36:20.170Z",
      "paidAt": "2024-08-09T13:34:17.110Z",
      "subtotal": 17797.39,
      "tax": 0,
      "total": 17797.39,
      "currency": "EUR",
      "lineItems": [
        {
          "description": "Maintenance contract",
          "quantity": 28,
          "unitPrice": 257.15,
          "lineTotal": 7200.2
        },
        {
          "description": "Software development",
          "quantity": 9,
          "unitPrice": 98.43,
          "lineTotal": 885.87
        },
        {
          "description": "Photography services",
          "quantity": 16,
          "unitPrice": 405.75,
          "lineTotal": 6492
        },
        {
          "description": "Project management",
          "quantity": 26,
          "unitPrice": 123.82,
          "lineTotal": 3219.32
        }
      ],
      "createdAt": "2024-08-01T10:00:59.023Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/invoices?page=2",
    "next": "/api/v1/invoices?page=3",
    "prev": "/api/v1/invoices?page=1"
  }
}
Draftbit