Get data metadata
Get a data item. This will HEAD the underlying bucket to retrieve the last file information.
Authorizations
Path parameters
organizationIdintegerRequired
Organization ID
dataIdintegerRequired
Data ID
Query parameters
filterstringOptionalExample:
Data filter in SQL WHERE format, where you can reference 'dataset', 'bucket', 'name', 'total_file_count', 'total_file_size', 'created' and any metadata label through 'metadata->' (dots are replaced by underscore).
dataset = 'activity data' AND (label = 'running' OR metadata->user = 'Jan Jongboom')
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/data/{dataId} HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"data": {
"id": 1,
"name": "text",
"bucketId": 1,
"bucketName": "text",
"bucketPath": "text",
"dataset": "text",
"totalFileCount": 1,
"totalFileSize": 1,
"created": "2025-06-21T00:37:30.994Z",
"metadata": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"files": [
{
"name": "text",
"bucketPath": "text",
"size": 1,
"lastModified": "2025-06-21T00:37:30.994Z"
}
]
}
}
Last updated
Was this helpful?