The healthcare AI models marked (preview) in this article are currently in limited preview. These models are intended and provided as-is for research and model development exploration. The healthcare AI models are not designed or intended to be deployed in clinical settings as-is. They are not intended for use in the diagnosis or treatment of any health or medical condition, and the individual models’ performances for such purposes have not been established.You bear sole responsibility and liability for any use of the healthcare AI models, including verification of outputs and incorporation into any product or service intended for a medical purpose or to inform clinical decision-making, compliance with applicable healthcare laws and regulations, and obtaining any necessary clearances or approvals.
Registration is required to use MedImageInsight Premium. Access will be granted according to Microsoft’s eligibility criteria. To request access, submit this form.
Prerequisites
- An Azure subscription with access to Microsoft Foundry. If you don’t have one, create one for free.
- A Foundry project. If you don’t have one, create a project.
- Permission to view models and create or use deployments in your project.
- Access to deploy MedImageInsight Premium in the model catalog for your project. To request access, submit this form.
- Required role-based access control for model deployment and endpoint use. For details, see Role-based access control in Foundry portal.
- A test image or small test set for evaluation.
- A client for test calls, such as REST tooling or an SDK-capable app environment.
Deploy MedImageInsight Premium in Foundry
Deploy the model from the Foundry model catalog so that you can invoke it from your application or test client.- Sign in to Microsoft Foundry. Make sure the New Foundry toggle is on. These steps refer to Foundry (new).

- Select your subscription and Foundry resource.
- Select Discover > Models.
- Search for MedImageInsight Premium and open the model card.
- Select Deploy.
- Review the available terms and deployment settings in your tenant.
- Enter a deployment name and create the deployment.
- Wait for deployment status to show Succeeded.
- Copy the endpoint URL, deployment identifier, and authentication settings.
If deployment fails, check Known issues in Microsoft Foundry for current limitations and workarounds. Common causes include missing role assignments, region mismatch, and offer access that isn’t enabled for your tenant.
Test the deployment
After deployment succeeds, you can validate the endpoint by sending test requests with text or image inputs to generate embeddings.Sample request payload
Send aPOST to /providers/microsoft/v2/embed on your deployment URL. Use the texts field for text inputs or the images field for images encoded as base64 data URIs.
Reference for REST API
The following API reference shows the request payload, headers, response schema, and error codes for the MedImageInsight Premium embedding endpoint. Use it to send authenticated requests, confirm your deployment is reachable, and as a reference to build applications using the API.Request headers
Authorization: Bearer <your-api-key>Content-Type: application/json
Request body
- One modality per request. Provide
textsorimages, not both. If both fields are present, the endpoint silently processes one and ignores the other. - Batching is supported. You can send multiple items in a single call. The response returns one vector per item, ordered to match the input array.
- Supported image formats: PNG and JPEG.
- Image preparation. If your source data is DICOM, convert it before sending. The model expects single 2D images; for volumetric studies (CT, MRI), select the relevant slice and apply standard windowing for the modality before encoding. For reference DICOM-to-image conversion and modality-specific preprocessing utilities, see the Healthcare AI Examples repository.
Embedding formats
The response key matches the requested type (for example,embeddings.binary when you request binary).
float(recommended): list of 1024 float values per vector. The canonical embedding.base64: the float vector encoded as raw float32 bytes, base64-encoded. Lossless equivalent offloat, smaller wire payload.binary/ubinary: 128 bytes per vector — the 1024 sign bits of the float vector, packed 8 per byte. 32× smaller but lossy (only preserves sign). Suitable for fast approximate similarity search using Hamming distance.
Response body
Response codes
Learn more about the model
MedImageInsight Premium (preview) generates rich, semantically meaningful embeddings of medical images across nine imaging modalities, including X-ray, CT, MRI, ultrasound, dermatology, ophthalmology, pathology, mammography. These embeddings power downstream workflows: similarity search, classification, outlier detection, drift monitoring, dataset curation, and multimodal retrieval-augmented generation. Outputs are intermediate signals that feed into a customer-built application; they are never a clinical determination on their own. The premium model is a closed-weight, serverless offering with expanded capabilities and improved performance. For more information about differences between legacy and Premium models, see Legacy and Premium healthcare models. For license, transparency, and intended-use details, see the MedImageInsight Premium model card.Common use cases
Each of the following use cases assumes qualified human review as part of the workflow before any approval or action occurs- Image similarity search across hospital PACS archives
- Dataset curation and triage for AI/ML pipelines
- Outlier detection and study-level QA
- Drift monitoring for deployed imaging models
- Embedding-based classification for narrow downstream tasks (fracture detection, lesion characterization, modality routing)

Review safety requirements
MedImageInsight Premium (preview) generates embeddings for medical images and text in a shared latent space, suitable for similarity search, retrieval, and downstream classification workflows. MedImageInsight Premium is a model service, not a standalone clinical application. It’s intended for organizations and developers building healthcare imaging solutions, including healthcare providers, independent software vendors, systems integrators, partners, enterprise AI teams, and data science teams. The service is hosted and accessed by authenticated endpoints; customers don’t receive raw model weights. Embedding outputs can support powerful workflows, but they don’t provide definitive clinical truth. Model performance can vary based on data representativeness, modality, acquisition parameters, workflow design, site-specific practice, prompt wording, preprocessing, image quality, and distribution shift. Before implementation, define your workflow controls:- Validate that the model is fit for your intended use, modalities, and data sources.
- Keep appropriate human governance and review in workflows where outputs inform decisions.
- Evaluate performance on representative data before use and after material workflow changes.
- Monitor data drift, out-of-distribution behavior, quality, fairness, and operational performance over time.
- Confirm privacy, security, retention, logging, and access controls for sensitive healthcare data.
- Out-of-the-box clinical use
- Autonomous clinical decision-making.
- Use without qualified human oversight where outputs inform health or medical decisions.
- Treating similarity scores, embeddings, classifications, or search results as definitive clinical truth without validation.
- Use cases that require guarantees of perfect accuracy, completeness, fairness, or stability across all populations, devices, sites, or imaging protocols.
- Emergency, triage, or time-critical workflows unless your organization has independently validated the complete workflow and implemented appropriate controls.
- Any workflow where model output could be acted on without mitigation for performance variability, drift, or data quality issues.
Data, privacy, and security considerations
MedImageInsight Premium might be used in workflows that involve sensitive healthcare data, including medical images and associated text. You are responsible for configuring and operating your applications to meet privacy, security, compliance, and data governance obligations. Use of MedImageInsight Premium is subject to the preview license and might also be subject to other terms and conditions. For licensing information, see the MedImageInsight Premium model card.Related content
- Healthcare AI examples (GitHub)
- How to use MedImageInsight healthcare AI model for medical image embedding generation (classic)
- Customize a premium healthcare AI model with fine-tuning
- Model catalog and collections in Foundry portal
- Authentication and authorization options in Foundry
- Integrate Microsoft Foundry with your applications