Documentation
Platform API
MDR

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/info

This endpoint does not require authentication and can be called without an access token.

Example Request

cURL
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:

JSON
{
  "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

FieldTypeDescription
versionstringThe current version identifier of the Platform API
release_datestringThe release date of the current version in YYYY-MM-DD format
medical_deviceobjectMedical device certification information
medical_device.udistringUnique Device Identifier (UDI) as required by MDR
manufacturerobjectInformation about the device manufacturer
manufacturer.namestringLegal name of the manufacturer
manufacturer.addressobjectManufacturer's registered address
manufacturer.address.streetstringStreet address
manufacturer.address.postal_codestringPostal code
manufacturer.address.citystringCity
manufacturer.address.countrystringCountry
instruction_urlstringURL 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.

Was this page helpful?