Skip to main content
GET
/
cms
/
reports
cURL
curl --request GET \
  --url https://backend.claros.health/cms/reports \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "date": "2023-12-25",
    "measures": [
      "<string>"
    ],
    "measuresData": [
      {
        "name": "<string>",
        "performance": 123,
        "caseCount": 123,
        "mipsPoints": 123
      }
    ],
    "status": "<string>",
    "submittedBy": "<string>"
  }
]
This endpoint requires authentication. Include your API key in the request headers as X-API-Key.

Description

Retrieves all CMS reports for the authenticated user. CMS reports contain quality measures and performance data for reporting to the Centers for Medicare & Medicaid Services.

Response

id
string
The unique identifier of the CMS report
date
string
The date when the report was created
measures
array
List of measure names included in the report
measuresData
array
Detailed data for each measure in the report
status
string
The current status of the report (e.g., PENDING, SUBMITTED)
submittedBy
string
The name of the user who submitted the report

Example Response

[
  {
    "id": "CMS-2024-Q1",
    "date": "2024-03-15",
    "measures": [
      "Blood Pressure Control",
      "Diabetes A1C Control"
    ],
    "measuresData": [
      {
        "name": "Blood Pressure Control",
        "performance": 85.5,
        "caseCount": 150,
        "mipsPoints": 10
      },
      {
        "name": "Diabetes A1C Control",
        "performance": 78.2,
        "caseCount": 120,
        "mipsPoints": 8
      }
    ],
    "status": "SUBMITTED",
    "submittedBy": "John Smith"
  }
]

Authorizations

X-API-Key
string
header
required

Response

List of CMS reports

id
string
date
string<date>
measures
string[]
measuresData
object[]
status
string
submittedBy
string