Skip to main content
Use this endpoint to fetch a completed test record’s results as a fully rendered HTML document. This is ideal when you want to display the report directly to participants or clinicians without building a custom UI.

Prerequisites

The record must be finished (is_finished: true). If the test is not yet completed, this endpoint returns HTTP 409.

Endpoint

Headers

Path parameters

string
required
The UUID token of the finished test record.

Response

object
string
Complete HTML document string containing the styled test report. Embed this in an iframe, render it in a WebView, or convert it to PDF.

Example request

Example response

Use cases

  • Embed in iframe: Set the html string as the srcdoc of an iframe to display the report inside your application.
  • Print or download: Open the HTML in a new browser window and trigger the print dialog for a physical copy or PDF export.
  • Mobile apps: Render the HTML in a native WebView component for iOS or Android.

Error responses