Example API Requests
1️⃣ Retrieve the First 10 Snapshots
GET /snapshot?limit=10&offset=0
🔹 Returns snapshots 1 to 10.
2️⃣ Retrieve the Next 10 Snapshots
GET /snapshot?limit=10&offset=10
🔹 Skips the first 10 snapshots and returns 11 to 20.
3️⃣ Retrieve Snapshots 21 to 30
GET /snapshot?limit=10&offset=20
🔹 Skips the first 20 snapshots and returns 21 to 30.