MDR: Platform API
The Platform API is your primary way to access the Medical Guidance Platform (MGP), an Infermedica product that supports patients and healthcare providers throughout the entire primary care journey—from symptom to outcome.
The Medical Guidance Platform and its modules are certified as Class IIb medical devices under the EU's Medical Device Regulation (MDR). This certification signifies our adherence to the highest standards of safety, quality, and clinical validation.
MDR Compliance Requirements
To use the MGP's medical certification, implementations based on the Platform API must be aligned with our interview types and undergo a post-implementation audit by our team.
For further details, please reach out to our team.
Certification Information Endpoint
The Platform API provides an /info endpoint that returns certification and device information required for MDR compliance. This endpoint can be used to display certification details in your application.
Endpoint
GET /api/mgp/v1/infoThis endpoint does not require authentication and can be called without an access token.
Example Request
curl "https://api.infermedica.com/api/mgp/v1/info" \
-X "GET" \
-H "Instance-Id: <INSTANCE_ID>-mgp"Response
A successful response returns a 200 OK status code with the following information:
{
"version": "v6.15.0",
"release_date": "2025-10-27",
"medical_device": {
"udi": "(01)05904610848036(11)251027(8012)6.15.0"
},
"manufacturer": {
"name": "Infermedica Sp. z o.o.",
"address": {
"street": "ul. Plac Solny 14/3",
"postal_code": "50-062",
"city": "Wrocław",
"country": "Poland"
}
},
"instruction_url": "https://static.infermedica.com/mgp-statics/instructions/mgp/en/instruction.pdf"
}Response Fields
| Field | Type | Description |
|---|---|---|
version | string | The current version identifier of the Platform API |
release_date | string | The release date of the current version in YYYY-MM-DD format |
medical_device | object | Medical device certification information |
medical_device.udi | string | Unique Device Identifier (UDI) as required by MDR |
manufacturer | object | Information about the device manufacturer |
manufacturer.name | string | Legal name of the manufacturer |
manufacturer.address | object | Manufacturer's registered address |
manufacturer.address.street | string | Street address |
manufacturer.address.postal_code | string | Postal code |
manufacturer.address.city | string | City |
manufacturer.address.country | string | Country |
instruction_url | string | URL to the instructions for use document |
Usage
The information from this endpoint should be displayed in your application to meet MDR compliance requirements. This typically includes showing the UDI, manufacturer information, and providing access to the instructions for use.
For further details, please reach out to our team.