example-data.com

invoices / #171

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

Component variants

curl -sS \
  "https://example-data.com/api/v1/invoices/171" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/invoices/171"
);
const invoice = await res.json();
import type { Invoice } from "https://example-data.com/types/invoices.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/invoices/171"
);
const invoice = (await res.json()) as Invoice;
import requests

res = requests.get(
    "https://example-data.com/api/v1/invoices/171"
)
invoice = res.json()
{
  "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"
}
Draftbit