GET
/
api
/
{projectId}
/
downloads
Get downloads
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"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Query Parameters

impulseId
integer

Impulse ID. If this is unset then the default impulse is used.

Response

200 - application/json

OK

The response is of type object.