Docus Lab SAAS Sandbox
  1. Visit
Docus Lab SAAS Sandbox
  • Getting Started
  • Initial Biomarkers and Biomarker Groups Setup
  • Flow Between Lab and API
  • Limitations
  • Support
  • Patient
    • Create a patient
      POST
    • Update a patient
      PUT
    • Get patient by ID
      GET
  • Visit
    • Create visit
      POST
    • Create composite visit
      POST
    • Generate AI report
      POST
    • Get AI report by visit ID
      GET
  • Lab Test
    • Create a plain lab test
      POST
    • Create a lab test with biomarkers
      POST
    • Create bulk plain lab tests
      POST
    • Create bulk lab tests with biomarkers
      POST
    • Get lab test by ID
      GET
  • Biomarker Group
    • Create a biomarker group
      POST
    • Update a biomarker group
      PUT
    • Get biomarker group by ID
      GET
  • Biomarker
    • Create a biomarker
      POST
    • Update biomarker by ID
      PUT
    • Get biomarker by ID
      GET
  • Branch
    • Create a branch
      POST
    • Update branch by ID
      PUT
    • Get branch by ID
      GET
  • Webhooks
    • Health reports
    • Notifications
  • Schemas
    • Schemas
      • UpdateBiomarkerDto
      • CreateLabTestPlanDTO
      • UpdateBiomarkerGroupDto
      • LabTestReport
      • CreateCompositeVisitDto
      • MultipleTestIdsDto
      • CreateBulkLabTestsPlainDTO
      • CreateBulkLabTestsDTO
      • CreateBranchDto
      • UpdateBranchDto
      • Biomarker
      • CreateBiomarkerGroupDto
      • CreateBiomarkerDto
      • SingleReport
      • CreatePatientDto
      • UpdatePatientDto
      • CreateVisitDto
      • CreateLabTestDTO
  1. Visit

Get AI report by visit ID

Developing
GET
/visit/report/{visit_id}

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/visit/report/' \
--header 'x-api-key: {{api-key}}' \
--header 'x-docus-key: {{docus-key}}' \
--header 'x-auth-secret: {{auth-secret}}' \
--header 'x-team-id: {{team-id}}'
Response Response Example
{
    "visit_id": "string",
    "patient_id": "string",
    "date": "string",
    "pregnant": "string",
    "ready": true,
    "status": "string",
    "reportFr": {
        "introSection": "string",
        "generalInterpretation": "string",
        "abnormalFindings": "string",
        "clinicalSignificance": "string",
        "followUpTests": "string",
        "riskFactorManagement": "string",
        "specialistRecommendations": "string",
        "lifestyleRecommendations": "string"
    },
    "reportEn": {
        "introSection": "string",
        "generalInterpretation": "string",
        "abnormalFindings": "string",
        "clinicalSignificance": "string",
        "followUpTests": "string",
        "riskFactorManagement": "string",
        "specialistRecommendations": "string",
        "lifestyleRecommendations": "string"
    },
    "reportAr": {
        "introSection": "string",
        "generalInterpretation": "string",
        "abnormalFindings": "string",
        "clinicalSignificance": "string",
        "followUpTests": "string",
        "riskFactorManagement": "string",
        "specialistRecommendations": "string",
        "lifestyleRecommendations": "string"
    }
}
Modified at 2025-08-11 09:24:57
Previous
Generate AI report
Next
Create a plain lab test
Built with