Snapshots

List all snapshots (shard)

GET
Returns a list of all snapshots for a shard from a collection.

Path parameters

collection_namestringRequired
Name of the collection
shard_idintegerRequired
Id of the shard

Response

This endpoint returns an object
time
doubleOptional
Time spent to process this request
status
stringOptional
result
list of objectsOptional
GET
1curl http://localhost:6333/collections/collection_name/shards/1/snapshots \
2 -H "api-key: <apiKey>"
200Retrieved
1{
2 "time": 1.1,
3 "status": "status",
4 "result": [
5 {
6 "name": "name",
7 "size": 1,
8 "creation_time": "creation_time",
9 "checksum": "checksum"
10 }
11 ]
12}