example-data.com

invoices

invoices

Page 7 of 10.

fromUserId
63
toUserId
4
invoiceNumber
INV-2025-0145
status
paid
issuedAt
dueAt
paidAt
subtotal
16411.95
tax
0
total
16411.95
currency
GBP
lineItems
[
  {
    "description": "Software development",
    "quantity": 23,
    "unitPrice": 228.83,
    "lineTotal": 5263.09
  },
  {
    "description": "Research services",
    "quantity": 11,
    "unitPrice": 166.66,
    "lineTotal": 1833.26
  },
  {
    "description": "Photography services",
    "quantity": 30,
    "unitPrice": 310.52,
    "lineTotal": 9315.6
  }
]
createdAt
fromUserId
132
toUserId
20
invoiceNumber
INV-2025-0146
status
paid
issuedAt
dueAt
paidAt
subtotal
3804.04
tax
380.4
total
4184.44
currency
CAD
lineItems
[
  {
    "description": "Data analysis",
    "quantity": 29,
    "unitPrice": 114.62,
    "lineTotal": 3323.98
  },
  {
    "description": "Data analysis",
    "quantity": 2,
    "unitPrice": 240.03,
    "lineTotal": 480.06
  }
]
createdAt
fromUserId
160
toUserId
62
invoiceNumber
INV-2025-0147
status
paid
issuedAt
dueAt
paidAt
subtotal
20924.44
tax
0
total
20924.44
currency
AUD
lineItems
[
  {
    "description": "Design work",
    "quantity": 12,
    "unitPrice": 465.61,
    "lineTotal": 5587.32
  },
  {
    "description": "Technical support",
    "quantity": 37,
    "unitPrice": 118.96,
    "lineTotal": 4401.52
  },
  {
    "description": "Implementation services",
    "quantity": 26,
    "unitPrice": 420.6,
    "lineTotal": 10935.6
  }
]
createdAt
fromUserId
34
toUserId
30
invoiceNumber
INV-2025-0148
status
overdue
issuedAt
dueAt
paidAt
subtotal
6130.45
tax
306.52
total
6436.97
currency
AUD
lineItems
[
  {
    "description": "System integration",
    "quantity": 3,
    "unitPrice": 387.56,
    "lineTotal": 1162.68
  },
  {
    "description": "Marketing services",
    "quantity": 5,
    "unitPrice": 14.69,
    "lineTotal": 73.45
  },
  {
    "description": "System integration",
    "quantity": 4,
    "unitPrice": 45.98,
    "lineTotal": 183.92
  },
  {
    "description": "Maintenance contract",
    "quantity": 20,
    "unitPrice": 235.52,
    "lineTotal": 4710.4
  }
]
createdAt
fromUserId
62
toUserId
200
invoiceNumber
INV-2026-0149
status
sent
issuedAt
dueAt
paidAt
subtotal
24219.13
tax
4843.83
total
29062.96
currency
EUR
lineItems
[
  {
    "description": "Marketing services",
    "quantity": 14,
    "unitPrice": 336.82,
    "lineTotal": 4715.48
  },
  {
    "description": "Hardware supply",
    "quantity": 28,
    "unitPrice": 414.05,
    "lineTotal": 11593.4
  },
  {
    "description": "System integration",
    "quantity": 34,
    "unitPrice": 134.85,
    "lineTotal": 4584.9
  },
  {
    "description": "Implementation services",
    "quantity": 35,
    "unitPrice": 95.01,
    "lineTotal": 3325.35
  }
]
createdAt
fromUserId
122
toUserId
4
invoiceNumber
INV-2025-0150
status
sent
issuedAt
dueAt
paidAt
subtotal
25914.22
tax
5182.84
total
31097.06
currency
USD
lineItems
[
  {
    "description": "Content writing",
    "quantity": 6,
    "unitPrice": 132.17,
    "lineTotal": 793.02
  },
  {
    "description": "Research services",
    "quantity": 35,
    "unitPrice": 156.7,
    "lineTotal": 5484.5
  },
  {
    "description": "Design work",
    "quantity": 39,
    "unitPrice": 268.51,
    "lineTotal": 10471.89
  },
  {
    "description": "License fee",
    "quantity": 15,
    "unitPrice": 239.59,
    "lineTotal": 3593.85
  },
  {
    "description": "Documentation",
    "quantity": 15,
    "unitPrice": 226.56,
    "lineTotal": 3398.4
  },
  {
    "description": "Design work",
    "quantity": 26,
    "unitPrice": 83.56,
    "lineTotal": 2172.56
  }
]
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": 145,
      "fromUserId": 63,
      "toUserId": 4,
      "invoiceNumber": "INV-2025-0145",
      "status": "paid",
      "issuedAt": "2025-10-22T05:28:39.189Z",
      "dueAt": "2025-11-13T05:28:39.189Z",
      "paidAt": "2025-11-02T18:40:22.864Z",
      "subtotal": 16411.95,
      "tax": 0,
      "total": 16411.95,
      "currency": "GBP",
      "lineItems": [
        {
          "description": "Software development",
          "quantity": 23,
          "unitPrice": 228.83,
          "lineTotal": 5263.09
        },
        {
          "description": "Research services",
          "quantity": 11,
          "unitPrice": 166.66,
          "lineTotal": 1833.26
        },
        {
          "description": "Photography services",
          "quantity": 30,
          "unitPrice": 310.52,
          "lineTotal": 9315.6
        }
      ],
      "createdAt": "2025-10-21T13:15:47.123Z"
    },
    {
      "id": 146,
      "fromUserId": 132,
      "toUserId": 20,
      "invoiceNumber": "INV-2025-0146",
      "status": "paid",
      "issuedAt": "2025-01-16T07:14:17.035Z",
      "dueAt": "2025-02-25T07:14:17.035Z",
      "paidAt": "2025-01-18T08:59:35.187Z",
      "subtotal": 3804.04,
      "tax": 380.4,
      "total": 4184.44,
      "currency": "CAD",
      "lineItems": [
        {
          "description": "Data analysis",
          "quantity": 29,
          "unitPrice": 114.62,
          "lineTotal": 3323.98
        },
        {
          "description": "Data analysis",
          "quantity": 2,
          "unitPrice": 240.03,
          "lineTotal": 480.06
        }
      ],
      "createdAt": "2025-01-16T03:13:47.072Z"
    },
    {
      "id": 147,
      "fromUserId": 160,
      "toUserId": 62,
      "invoiceNumber": "INV-2025-0147",
      "status": "paid",
      "issuedAt": "2025-02-19T01:12:25.989Z",
      "dueAt": "2025-03-09T01:12:25.989Z",
      "paidAt": "2025-02-23T22:49:16.046Z",
      "subtotal": 20924.44,
      "tax": 0,
      "total": 20924.44,
      "currency": "AUD",
      "lineItems": [
        {
          "description": "Design work",
          "quantity": 12,
          "unitPrice": 465.61,
          "lineTotal": 5587.32
        },
        {
          "description": "Technical support",
          "quantity": 37,
          "unitPrice": 118.96,
          "lineTotal": 4401.52
        },
        {
          "description": "Implementation services",
          "quantity": 26,
          "unitPrice": 420.6,
          "lineTotal": 10935.6
        }
      ],
      "createdAt": "2025-02-18T04:42:07.725Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/invoices?page=7",
    "next": "/api/v1/invoices?page=8",
    "prev": "/api/v1/invoices?page=6"
  }
}
Draftbit