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"
}
Predictions for every data explorer point (only available when using current impulse to populate data explorer)
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"
}
Project ID
OK
The response is of type object
.