Snapshots

List all snapshots (storage)

GET
Returns a list of all snapshots for the entire storage.

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/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}