GuidesAPI References
GuidesAPI References
  1. Manage tests
  • 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
  1. Manage tests

Get CCSTest result

GET
/api/ccs/v1/tests/{id}/result
Retrieves the complete patient report for a specific CCS test, including risk assessment results, biomarker values, recommendations, and population comparisons. This endpoint returns comprehensive cardiovascular risk analysis data formatted for patient reports.
What you get:
Complete risk assessment with score and classification
All biomarker values used in the analysis
ESC (European Society of Cardiology) guideline-based recommendations
Population risk level comparison
Treatment suggestions based on risk level

Request

Authorization
or
Path Params

Header Params

Responses

🟢200OK
application/json
Success - Returns the complete patient report with all test results, biomarkers, risk scores, and recommendations. The response is localized based on the user's language preference (English or German).
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.cardioexplorer.ai/api/ccs/v1/tests//result' \
--header 'Authorization: Bearer {{token}}'
Response Response Example
200 - Success
{
    "testId": "901804f2-566f-4dc4-af33-7beb6432073c",
    "patientId": "2307",
    "riskScore": 0.4990183413028717,
    "riskLevel": "High",
    "recommendation": "Coronary CT angiography (CCTA) for diagnosis and risk stratification is recommended",
    "completedAt": "2026-02-01T19:08:40.4233333",
    "warnings": []
}
Modified at 2026-02-02 19:27:21
Previous
Run CCSTest
Next
TestResponse
Built with