curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/downloads \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"downloads": [
{
"id": "The ID of the download, if available",
"name": "Training data",
"type": "NPY file",
"size": "73 items",
"link": "/api/1/raw-data/training/x",
"impulseId": "The ID of the impulse associated with this download, if available"
}
]
}
Retrieve the downloads for a project.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/downloads \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"downloads": [
{
"id": "The ID of the download, if available",
"name": "Training data",
"type": "NPY file",
"size": "73 items",
"link": "/api/1/raw-data/training/x",
"impulseId": "The ID of the impulse associated with this download, if available"
}
]
}
Project ID
Impulse ID. If this is unset then the default impulse is used.
OK
The response is of type object
.