VPS.org API

REST API Documentation

Snapshots API

Manage server snapshots for quick point-in-time restoration. Snapshots capture the complete state of your server.

Endpoints 4 endpoints
Base Path /api/v1/snapshots
GET /api/v1/snapshots/

List All Snapshots

Retrieve a list of all snapshots across your servers.

Query Parameters

Parameter Type Required Description
server_id integer No Filter snapshots by server ID

Example Request

cURL
Python
JavaScript
curl -X GET "https://admin.vps.org/api/v1/snapshots/?server_id=12345" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

url = "https://admin.vps.org/api/v1/snapshots/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}
params = {"server_id": 12345}

response = requests.get(url, headers=headers, params=params)
print(response.json())
const response = await fetch('https://admin.vps.org/api/v1/snapshots/?server_id=12345', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  }
});

const snapshots = await response.json();
console.log(snapshots);

Example Response

{
  "count": 2,
  "results": [
    {
      "id": 801,
      "server": {
        "id": 12345,
        "name": "web-server-01"
      },
      "name": "pre-migration-snapshot",
      "status": "completed",
      "size_mb": 5120,
      "created_at": "2025-01-15T18:30:00Z",
      "description": "Before major migration"
    },
    {
      "id": 798,
      "server": {
        "id": 12345,
        "name": "web-server-01"
      },
      "name": "weekly-snapshot-2025-01-08",
      "status": "completed",
      "size_mb": 4856,
      "created_at": "2025-01-08T12:00:00Z",
      "description": "Weekly snapshot"
    }
  ]
}

Response Status Codes

200 Successfully retrieved snapshot list
401 Unauthorized - Invalid or missing authentication token
POST /api/v1/snapshots/

Create Snapshot

Create a snapshot of a server's current state. Snapshots are point-in-time copies of the entire server.

Request Body Parameters

Parameter Type Required Description
server_id integer Yes ID of the server to snapshot
name string Yes Name for the snapshot (alphanumeric, hyphens, underscores)
description string No Optional description for the snapshot

Example Request

cURL
Python
JavaScript
curl -X POST "https://admin.vps.org/api/v1/snapshots/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "server_id": 12345,
    "name": "before-update-snapshot",
    "description": "Snapshot before system update"
  }'
import requests

url = "https://admin.vps.org/api/v1/snapshots/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}
data = {
    "server_id": 12345,
    "name": "before-update-snapshot",
    "description": "Snapshot before system update"
}

response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch('https://admin.vps.org/api/v1/snapshots/', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    server_id: 12345,
    name: 'before-update-snapshot',
    description: 'Snapshot before system update'
  })
});

const snapshot = await response.json();
console.log(snapshot);

Example Response

{
  "id": 802,
  "server": {
    "id": 12345,
    "name": "web-server-01"
  },
  "name": "before-update-snapshot",
  "status": "in_progress",
  "size_mb": null,
  "created_at": "2025-01-16T16:15:00Z",
  "description": "Snapshot before system update",
  "message": "Snapshot is being created. This may take 3-10 minutes depending on server size."
}

Response Status Codes

201 Snapshot creation initiated successfully
400 Bad Request - Invalid parameters or snapshot limit reached
401 Unauthorized - Invalid or missing authentication token
404 Not Found - Server does not exist
Note: You can have a maximum of 5 snapshots per server. Creating a snapshot while the server is running may result in filesystem inconsistencies. For best results, stop the server before creating a snapshot.
POST /api/v1/snapshots/{snapshot_id}/restore/

Restore from Snapshot

Restore a server to the state captured in a snapshot. This will overwrite all current data on the server.

Path Parameters

Parameter Type Required Description
snapshot_id integer Yes Unique snapshot ID

Example Request

cURL
Python
JavaScript
curl -X POST "https://admin.vps.org/api/v1/snapshots/801/restore/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

snapshot_id = 801
url = f"https://admin.vps.org/api/v1/snapshots/{snapshot_id}/restore/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())
const snapshotId = 801;
const response = await fetch(`https://admin.vps.org/api/v1/snapshots/${snapshotId}/restore/`, {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  }
});

const result = await response.json();
console.log(result);

Example Response

{
  "status": "success",
  "message": "Server is being restored from snapshot. This may take 5-15 minutes.",
  "snapshot": {
    "id": 801,
    "name": "pre-migration-snapshot",
    "created_at": "2025-01-15T18:30:00Z"
  },
  "server": {
    "id": 12345,
    "name": "web-server-01",
    "status": "restoring"
  }
}

Response Status Codes

200 Restore initiated successfully
400 Bad Request - Server is not in a valid state for restoration
401 Unauthorized - Invalid or missing authentication token
404 Not Found - Snapshot does not exist
Warning: Restoring from a snapshot will overwrite all current data on the server. This action cannot be undone. The server will be automatically stopped before restoration begins.
DELETE /api/v1/snapshots/{snapshot_id}/

Delete Snapshot

Permanently delete a snapshot. This action cannot be undone.

Path Parameters

Parameter Type Required Description
snapshot_id integer Yes Unique snapshot ID

Example Request

cURL
Python
curl -X DELETE "https://admin.vps.org/api/v1/snapshots/801/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

snapshot_id = 801
url = f"https://admin.vps.org/api/v1/snapshots/{snapshot_id}/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}

response = requests.delete(url, headers=headers)
print(response.status_code)

Response Status Codes

204 Snapshot deleted successfully
401 Unauthorized - Invalid or missing authentication token
404 Not Found - Snapshot does not exist

Snapshots vs Backups

Understanding when to use snapshots versus backups:

Snapshots API

  • Purpose: Quick point-in-time recovery
  • Speed: Faster to create and restore (3-15 min)
  • Use Case: Before risky operations (updates, config changes)
  • Storage: Stored on same infrastructure
  • Limit: 5 snapshots per server
  • Best For: Short-term rollback capability

Backups API

  • Purpose: Long-term data protection
  • Speed: Slower to create and restore (varies)
  • Use Case: Regular automated data protection
  • Storage: Separate backup storage
  • Limit: 10 manual + automatic backups
  • Best For: Disaster recovery and compliance

Best Practices