example-data.com

invoices

invoices

Page 8 of 10.

fromUserId
11
toUserId
144
invoiceNumber
INV-2024-0169
status
sent
issuedAt
dueAt
paidAt
subtotal
16784.66
tax
1342.77
total
18127.43
currency
EUR
lineItems
[
  {
    "description": "Project management",
    "quantity": 7,
    "unitPrice": 423.26,
    "lineTotal": 2962.82
  },
  {
    "description": "System integration",
    "quantity": 28,
    "unitPrice": 98.53,
    "lineTotal": 2758.84
  },
  {
    "description": "Training session",
    "quantity": 4,
    "unitPrice": 387.29,
    "lineTotal": 1549.16
  },
  {
    "description": "Design work",
    "quantity": 28,
    "unitPrice": 339.78,
    "lineTotal": 9513.84
  }
]
createdAt
fromUserId
97
toUserId
211
invoiceNumber
INV-2026-0170
status
overdue
issuedAt
dueAt
paidAt
subtotal
7998.66
tax
399.93
total
8398.59
currency
AUD
lineItems
[
  {
    "description": "Content writing",
    "quantity": 7,
    "unitPrice": 457.35,
    "lineTotal": 3201.45
  },
  {
    "description": "Accounting services",
    "quantity": 11,
    "unitPrice": 436.11,
    "lineTotal": 4797.21
  }
]
createdAt
fromUserId
199
toUserId
137
invoiceNumber
INV-2025-0171
status
sent
issuedAt
dueAt
paidAt
subtotal
26575.88
tax
1328.79
total
27904.67
currency
GBP
lineItems
[
  {
    "description": "Photography services",
    "quantity": 38,
    "unitPrice": 483.19,
    "lineTotal": 18361.22
  },
  {
    "description": "Software development",
    "quantity": 18,
    "unitPrice": 456.37,
    "lineTotal": 8214.66
  }
]
createdAt
fromUserId
177
toUserId
59
invoiceNumber
INV-2024-0172
status
sent
issuedAt
dueAt
paidAt
subtotal
6343.98
tax
317.2
total
6661.18
currency
GBP
lineItems
[
  {
    "description": "Hardware supply",
    "quantity": 21,
    "unitPrice": 163.08,
    "lineTotal": 3424.68
  },
  {
    "description": "Training session",
    "quantity": 15,
    "unitPrice": 194.62,
    "lineTotal": 2919.3
  }
]
createdAt
fromUserId
247
toUserId
94
invoiceNumber
INV-2024-0173
status
overdue
issuedAt
dueAt
paidAt
subtotal
34119.88
tax
0
total
34119.88
currency
USD
lineItems
[
  {
    "description": "Implementation services",
    "quantity": 3,
    "unitPrice": 384.68,
    "lineTotal": 1154.04
  },
  {
    "description": "Project management",
    "quantity": 36,
    "unitPrice": 370.72,
    "lineTotal": 13345.92
  },
  {
    "description": "Hardware supply",
    "quantity": 25,
    "unitPrice": 194,
    "lineTotal": 4850
  },
  {
    "description": "Hardware supply",
    "quantity": 34,
    "unitPrice": 356.64,
    "lineTotal": 12125.76
  },
  {
    "description": "Software development",
    "quantity": 8,
    "unitPrice": 330.52,
    "lineTotal": 2644.16
  }
]
createdAt
fromUserId
36
toUserId
219
invoiceNumber
INV-2025-0174
status
paid
issuedAt
dueAt
paidAt
subtotal
27619.19
tax
0
total
27619.19
currency
GBP
lineItems
[
  {
    "description": "Documentation",
    "quantity": 10,
    "unitPrice": 238.22,
    "lineTotal": 2382.2
  },
  {
    "description": "Design work",
    "quantity": 11,
    "unitPrice": 487.37,
    "lineTotal": 5361.07
  },
  {
    "description": "Implementation services",
    "quantity": 12,
    "unitPrice": 376.99,
    "lineTotal": 4523.88
  },
  {
    "description": "Content writing",
    "quantity": 37,
    "unitPrice": 414.92,
    "lineTotal": 15352.04
  }
]
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": 169,
      "fromUserId": 11,
      "toUserId": 144,
      "invoiceNumber": "INV-2024-0169",
      "status": "sent",
      "issuedAt": "2024-07-22T07:16:43.687Z",
      "dueAt": "2024-08-29T07:16:43.687Z",
      "paidAt": null,
      "subtotal": 16784.66,
      "tax": 1342.77,
      "total": 18127.43,
      "currency": "EUR",
      "lineItems": [
        {
          "description": "Project management",
          "quantity": 7,
          "unitPrice": 423.26,
          "lineTotal": 2962.82
        },
        {
          "description": "System integration",
          "quantity": 28,
          "unitPrice": 98.53,
          "lineTotal": 2758.84
        },
        {
          "description": "Training session",
          "quantity": 4,
          "unitPrice": 387.29,
          "lineTotal": 1549.16
        },
        {
          "description": "Design work",
          "quantity": 28,
          "unitPrice": 339.78,
          "lineTotal": 9513.84
        }
      ],
      "createdAt": "2024-07-21T20:28:04.186Z"
    },
    {
      "id": 170,
      "fromUserId": 97,
      "toUserId": 211,
      "invoiceNumber": "INV-2026-0170",
      "status": "overdue",
      "issuedAt": "2026-03-12T14:12:43.875Z",
      "dueAt": "2026-04-16T14:12:43.875Z",
      "paidAt": null,
      "subtotal": 7998.66,
      "tax": 399.93,
      "total": 8398.59,
      "currency": "AUD",
      "lineItems": [
        {
          "description": "Content writing",
          "quantity": 7,
          "unitPrice": 457.35,
          "lineTotal": 3201.45
        },
        {
          "description": "Accounting services",
          "quantity": 11,
          "unitPrice": 436.11,
          "lineTotal": 4797.21
        }
      ],
      "createdAt": "2026-03-11T20:07:41.759Z"
    },
    {
      "id": 171,
      "fromUserId": 199,
      "toUserId": 137,
      "invoiceNumber": "INV-2025-0171",
      "status": "sent",
      "issuedAt": "2025-04-23T03:29:55.263Z",
      "dueAt": "2025-05-02T03:29:55.263Z",
      "paidAt": null,
      "subtotal": 26575.88,
      "tax": 1328.79,
      "total": 27904.67,
      "currency": "GBP",
      "lineItems": [
        {
          "description": "Photography services",
          "quantity": 38,
          "unitPrice": 483.19,
          "lineTotal": 18361.22
        },
        {
          "description": "Software development",
          "quantity": 18,
          "unitPrice": 456.37,
          "lineTotal": 8214.66
        }
      ],
      "createdAt": "2025-04-22T06:45:24.435Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/invoices?page=8",
    "next": "/api/v1/invoices?page=9",
    "prev": "/api/v1/invoices?page=7"
  }
}
Draftbit