Get dataset version
curl --request GET \
--url https://acusight.io/api/data/datasets/versions/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"batch_count": 123,
"class_count": 123,
"created_at": "<string>",
"id": 123,
"name": "<string>",
"pipeline_config": {
"augmentation": [
{
"config": [
123
],
"id": "<string>"
}
],
"augmentation_multiplier": 123,
"augmentation_seed": 123,
"config_version": 123,
"metadata": {},
"preprocessing": [
{
"config": [
123
],
"id": "<string>"
}
]
},
"project_id": 123,
"test_count": 123,
"total_images": 123,
"train_count": 123,
"updated_at": "<string>",
"val_count": 123,
"version": 123,
"version_batches": [
{
"id": 123,
"image_count": 123,
"images": [
{
"annotations": [
{
"height": 123,
"id": 123,
"type": "<string>",
"version_class_value": "<string>",
"width": 123,
"x_center": 123,
"y_center": 123
}
],
"filename": "<string>",
"height": 123,
"id": 123,
"original_image_id": 123,
"split": "<string>",
"width": 123
}
],
"name": "<string>",
"original_batch_id": 123
}
],
"version_classes": [
{
"color": "<string>",
"id": 123,
"name": "<string>",
"original_class_id": 123,
"raw_value": "<string>"
}
]
},
"error": {
"code": "<string>",
"details": "<string>",
"message": "<string>"
},
"meta": {
"count": 123,
"limit": 123,
"offset": 123,
"total": 123
},
"success": true
}Datasets & data
Get dataset version
Retrieves dataset version details including batches, classes, preview images, and split statistics.
GET
/
data
/
datasets
/
versions
/
{id}
Get dataset version
curl --request GET \
--url https://acusight.io/api/data/datasets/versions/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"batch_count": 123,
"class_count": 123,
"created_at": "<string>",
"id": 123,
"name": "<string>",
"pipeline_config": {
"augmentation": [
{
"config": [
123
],
"id": "<string>"
}
],
"augmentation_multiplier": 123,
"augmentation_seed": 123,
"config_version": 123,
"metadata": {},
"preprocessing": [
{
"config": [
123
],
"id": "<string>"
}
]
},
"project_id": 123,
"test_count": 123,
"total_images": 123,
"train_count": 123,
"updated_at": "<string>",
"val_count": 123,
"version": 123,
"version_batches": [
{
"id": 123,
"image_count": 123,
"images": [
{
"annotations": [
{
"height": 123,
"id": 123,
"type": "<string>",
"version_class_value": "<string>",
"width": 123,
"x_center": 123,
"y_center": 123
}
],
"filename": "<string>",
"height": 123,
"id": 123,
"original_image_id": 123,
"split": "<string>",
"width": 123
}
],
"name": "<string>",
"original_batch_id": 123
}
],
"version_classes": [
{
"color": "<string>",
"id": 123,
"name": "<string>",
"original_class_id": 123,
"raw_value": "<string>"
}
]
},
"error": {
"code": "<string>",
"details": "<string>",
"message": "<string>"
},
"meta": {
"count": 123,
"limit": 123,
"offset": 123,
"total": 123
},
"success": true
}Authorizations
JWT access token. Paste the token only; the Bearer prefix is added automatically.
Path Parameters
Dataset version ID
Was this page helpful?
⌘I