Snapshots API
Try the public JSON endpoints and inspect live responses.
Response contract
The latest endpoint returns a short-lived signed URL plus ready-to-run download commands. Refresh the URL before each long automation run.
{
"success": true,
"data": {
"chain_id": "cosmoshub-4",
"height": 123456,
"size": 123456789,
"url": "https://snaps.bryanlabs.net/secure/...",
"expires_at": "2026-06-19T18:00:00.000Z",
"database_backend": "pebbledb",
"latest": {
"file_name": "cosmoshub-4-123456-YYYYMMDD-HHMMSS.tar.zst",
"commands": {
"curl": "curl -L -C - -O ...",
"aria2c": "aria2c -c -x 8 -s 8 -k 1M ..."
}
},
"previous": []
}
}