> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shiftsheet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Invoices

> Retrieve a list of generated invoices for your company.

This endpoint is typically used to sync your Shiftsheet invoices into external accounting software like Xero or QuickBooks.

### Query Parameters

<ParamField query="status" type="string">
  Filter invoices by their status (e.g., `DRAFT`, `ISSUED`, `PAID`, `VOID`).
</ParamField>

<ParamField query="date" type="string">
  Filter invoices where the issue date is greater than or equal to this date (ISO 8601 format).
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "id": "inv_123...",
        "invoiceNumber": "INV-2026-001",
        "status": "ISSUED",
        "issueDate": "2026-05-18T00:00:00.000Z",
        "dueDate": "2026-06-18T00:00:00.000Z",
        "totalAmount": 1500.00,
        "currency": "USD"
      }
    ]
  }
  ```
</ResponseExample>
