GET
https://api.main.apexscore.ai
/
api
/
v1
/
reports
/
{id}
/
observations
curl --request GET \
  --url https://api.main.apexscore.ai/api/v1/reports/{id}/observations/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "dataset": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "configuration": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "is_primary": true,
      "name": "<string>",
      "result": {
        "state": {
          "status": "pending",
          "status_message": "<string>",
          "observations_data_pending": "<string>",
          "text_analysis_data_pending": "<string>"
        }
      },
      "filterables": [
        {
          "name": "<string>",
          "content": "<string>",
          "is_noteworthy": true,
          "has_presentable_calculations": true,
          "largest_apex_delta": 0,
          "options": [
            {
              "display": "<string>",
              "value": "<string>",
              "apex_score": 0,
              "sample_size": -1,
              "content": "<string>",
              "option_display_order": 1073741824
            }
          ]
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

A UUID string identifying this report.

Query Parameters

configuration_id
string

Optional configuration id to retrieve. If not provided, the primary configuration will be used.

Response

200 - application/json

The response is of type object.