GET
/
api
/
{projectId}
/
raw-data
/
data-explorer
/
predictions
Get data explorer predictions
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/data-explorer/predictions \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "predictions": [
    {
      "sampleId": 123,
      "startMs": 123,
      "endMs": 123,
      "label": "<string>",
      "prediction": "<string>",
      "predictionCorrect": true,
      "f1Score": 123,
      "anomalyScores": [
        [
          123
        ]
      ]
    }
  ],
  "labels": [
    "<string>"
  ],
  "classificationType": "classification"
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Response

200 - application/json

OK

The response is of type object.