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

# Get Invoice

> Retrieve a specific invoice by its ID, including usage quotas and document reference.

## Path Parameters

<ParamField path="orgId" type="string" required>
  Your organisation's unique identifier.
</ParamField>

<ParamField path="invoiceId" type="string" required>
  The numeric ID of the invoice record.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.voxmind.ai/organisations/42/invoices/11 \
    -H "Authorization: Bearer YOUR_API_TOKEN" \
    -H "Accept: application/json"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": 11,
    "org_id": 42,
    "sub_id": 3,
    "invoice_sequence": 3,
    "quotas": {
      "monthly_verifications": 9847,
      "overage_calls": 0
    },
    "file_ref": "4d61d50295d55da651aa534a049fc2f159414b89d8d29a56160a266539acfcfc",
    "created_at": "2025-03-31T23:59:59Z",
    "updated_at": "2025-04-01T00:00:01Z"
  }
  ```
</ResponseExample>
