# Get insurance Returns a single Insurance by its unique identifier. Endpoint: GET /site/{siteId}/ahds/v1/insurance/{insuranceId} Version: 1.0 Security: bearer ## Path parameters: - `siteId` (number, required) Site identifier - `insuranceId` (string, required) Insurance unique identifier (UUID) ## Response 200 fields (application/json): - `insuranceId` (string, required) Canonical unique identifier for the insurance record. Example: "123e4567-e89b-12d3-a456-426614174000" - `policyNumber` (string, required) Insurance policy number. - `provider` (object, required) Insurance provider/company. - `provider.code` (string, required) Code value - `provider.system` (string, required) Code system URI - `provider.display` (string) Human-readable display - `animalId` (string, required) Reference to the insured animal. Example: "123e4567-e89b-12d3-a456-426614174000" - `contactId` (string, required) Reference to the policy holder contact. Example: "123e4567-e89b-12d3-a456-426614174000" - `coverageType` (object, required) Type of coverage (accident, illness, wellness, comprehensive). - `effectiveDate` (string, required) Date the policy becomes effective. Example: "2025-01-01T00:00:00Z" - `expiryDate` (string, required) Date the policy expires. Example: "2025-01-01T00:00:00Z" - `isActive` (boolean, required) Whether the policy is currently active. - `createdAt` (string, required) Timestamp when the insurance record was created. Example: "2025-01-01T00:00:00.000Z" - `updatedAt` (string, required) Timestamp when the insurance record was last updated. Example: "2025-01-01T00:00:00.000Z" - `extensions` (object, required) Vendor- or practice-specific extensions. ## Response 401 fields ## Response 404 fields