GuidesAPI References
GuidesAPI References
    • Authentication
      • Obtain access token
        POST
      • Generate magic link
        POST
    • Manage tests
      • Generate draft test
        POST
      • Run CCSTest
        POST
      • Get CCSTest result
        GET
    • Schemas
      • TestResponse
      • PatientReport
      • ApiResponse
    GuidesAPI References
    GuidesAPI References

    PatientReport

    Comprehensive patient report containing all test results, biomarkers, and clinical recommendations

    {
        "testId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "testDate": "2024-01-15T10:30:00Z",
        "patientInfo": {
            "patientId": "encrypted_patient_id",
            "age": 65,
            "sex": "male"
        },
        "riskAssessment": {
            "score": 0.73,
            "riskClass": 3,
            "riskLevel": "high",
            "populationRiskLevel": "Above average for age group and sex"
        },
        "biomarkers": {
            "property1": {
                "value": 0,
                "unit": "string",
                "status": "normal"
            },
            "property2": {
                "value": 0,
                "unit": "string",
                "status": "normal"
            }
        },
        "recommendations": {
            "primary": [
                "string"
            ],
            "lifestyle": [
                "string"
            ],
            "followUp": [
                "string"
            ]
        },
        "hasValidSSN": true,
        "language": "en"
    }
    Built with