> ## 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.

# Get Invoice

> Retrieve detailed information about a specific invoice.

This endpoint returns the full line-item breakdown of the invoice.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the invoice.
</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",
      "recipient": {
        "name": "Acme Corp",
        "email": "billing@acmecorp.com"
      },
      "lineItems": [
        {
          "id": "li_456...",
          "description": "Software Development - Jane Doe",
          "quantity": 10,
          "rate": 150.00,
          "amount": 1500.00
        }
      ]
    }
  }
  ```
</ResponseExample>
