Overview

COVID-ID provides a digital framework for managing and verifying COVID-19 health credentials. The system is engineered to support organizations in establishing and enforcing health protocols by offering a verifiable record of an individual's vaccination status or recent test results. This is primarily achieved through a mobile application for end-users, which stores and displays their health information, and a web-based portal for organizations to manage access and verify credentials. The platform aims to balance public health requirements with individual privacy by enabling selective disclosure of health data.

The core functionality of COVID-ID revolves around the secure aggregation and presentation of health data. Users can link their vaccination records or recent COVID-19 test results to their digital ID within the application. This information is then presented as a scannable credential, typically a QR code, which can be verified by participating organizations. This process is designed to streamline entry into various settings, such as workplaces, event venues, and travel hubs, by providing a quick and standardized method of health status confirmation. The system's utility extends to various sectors requiring health verification, including corporate environments for employee screening, educational institutions for student and staff management, and hospitality for guest entry.

COVID-ID operates within the broader context of digital health passes, which gained prominence during the COVID-19 pandemic as tools to facilitate safe reopening and travel. These passes generally aim to provide a standardized, tamper-proof method of proving health status, often drawing on principles of self-sovereign identity or verifiable credentials. The architecture typically involves secure data storage, cryptographic verification, and user control over data sharing. For instance, similar initiatives like CommonPass focus on interoperability for international travel, aiming to standardize health documentation across borders to reduce friction for travelers while maintaining health security protocols, as detailed on the CommonPass website. COVID-ID's approach emphasizes ease of use for both individuals and verifying entities, aiming to reduce administrative overhead while enhancing compliance with health guidelines.

The platform's design prioritizes data security and user privacy. Health information is typically stored locally on the user's device or within a secure, encrypted cloud environment, with strict controls over who can access and verify the data. Organizations utilizing COVID-ID configure their verification parameters, determining what level of health information is required for entry. This flexibility allows for adaptation to evolving public health guidelines and organizational policies. While COVID-ID primarily functions as a digital health pass, its underlying infrastructure for secure credential management could potentially be adapted for other forms of verifiable digital identity in the future, extending beyond COVID-19 specific applications.

Key features

  • Digital Vaccination Records: Users can securely store and display their COVID-19 vaccination status, including dates and vaccine types, within the mobile application.
  • COVID-19 Test Result Management: Integration with testing providers allows users to receive and present verifiable negative (or positive) COVID-19 test results.
  • Secure Credential Presentation: Health status is presented via a dynamic QR code or similar digital credential, designed to be tamper-resistant and verifiable.
  • Organizational Verification Portal: A web-based portal for businesses and venues to scan and verify user credentials, with configurable access rules.
  • Privacy-Preserving Design: Aims to minimize the disclosure of personal health information, revealing only the necessary status for verification.
  • User-Controlled Data Sharing: Individuals maintain control over when and with whom their health credentials are shared.
  • Multi-Jurisdictional Compatibility: Designed with considerations for varying health guidelines and data privacy regulations across different regions.

Pricing

COVID-ID offers custom enterprise pricing. Specific details are not publicly available on their website and typically require direct consultation with their sales team to obtain a quote based on organizational size, usage volume, and specific feature requirements.

Service Tier Description Pricing Model (as of 2026-05-28)
Enterprise Solution Full suite of COVID-ID features for organizations, including mobile app access for employees/customers, administrative web portal, and integration support. Custom pricing per organization. Factors include number of users, verification frequency, and required customization. Contact COVID-ID sales for details.

Common integrations

Information regarding specific public APIs or SDKs for direct developer integration with COVID-ID is not prominently featured on their official website. Integrations typically occur at an organizational level for data ingestion and verification.

  • Healthcare Provider Systems: Integration with electronic health record (EHR) systems or laboratory information systems (LIS) to import vaccination and test results securely.
  • Access Control Systems: Potential integration with physical access control systems (e.g., turnstiles, building entry points) for automated entry based on verified health status.
  • Human Resources (HR) Platforms: For enterprise deployments, integration with HR systems to manage employee health statuses and compliance.
  • Event Management Platforms: Integration with ticketing or event registration systems to incorporate health verification into the entry process.

Alternatives

  • CommonPass: An initiative focused on creating a common international standard for digital health records to facilitate travel and border crossings.
  • IBM Digital Health Pass: A blockchain-based solution designed to help organizations verify health credentials for employees, customers, and visitors.
  • CLEAR Health Pass: A mobile app that links verified identity with health insights, including COVID-19 vaccination and test results, for secure entry to venues.

Getting started

COVID-ID primarily offers a mobile application for end-users and an administrative web portal for organizations. Direct developer API access for a 'hello world' style integration is not publicly documented. Organizations interested in deploying COVID-ID would typically engage directly with the vendor for onboarding and system configuration. The general process for an organization would involve:

  1. Contacting COVID-ID: Initiate a discussion with the COVID-ID sales or implementation team to define requirements and receive a customized proposal.
  2. System Configuration: Work with COVID-ID to configure the administrative web portal, define verification rules, and integrate with any necessary internal systems (e.g., HR, access control).
  3. User Onboarding: Distribute the COVID-ID mobile application to end-users (employees, customers, attendees) and provide instructions for linking their health records.
  4. Operational Deployment: Begin using the COVID-ID system for health verification at designated entry points or for specific processes.

While a direct code example for an API integration is not available, a conceptual 'hello world' for an organization setting up a verification rule in their administrative portal might look like defining a JSON configuration for allowed health statuses. This is illustrative, as actual portal interfaces are typically GUI-driven.


{
  "ruleName": "Venue Entry Requirement",
  "description": "Requires full COVID-19 vaccination or negative PCR test within 72 hours.",
  "conditions": [
    {
      "type": "vaccinationStatus",
      "status": "fullyVaccinated",
      "minDoses": 2,
      "vaccineTypes": ["Pfizer-BioNTech", "Moderna", "Oxford-AstraZeneca", "Janssen"]
    },
    {
      "type": "testResult",
      "testType": "PCR",
      "result": "negative",
      "validityPeriodHours": 72
    }
  ],
  "enforcement": {
    "action": "allowEntry",
    "fallback": "denyEntry"
  }
}

This JSON snippet represents how an organization might internally define a policy for entry, which the COVID-ID system would then enforce via its verification mechanisms. The actual implementation would be through the vendor's provided tools and services, rather than direct API calls by the client organization, given the current public documentation.