Skip to main content
GET
/
v2
/
enterprise
/
snapshots
/
{snapshot_id}
curl -X GET "https://api.devin.ai/v2/enterprise/snapshots/snapshot-0768f" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
    "created_at": "2025-11-03T20:00:35.979306Z",
    "description": "This machine has the repositories set up",
    "is_default": true,
    "org": {
        "created_at": "2025-08-27T00:38:26.600708",
        "display_name": "Test Org Updated",
        "org_id": "org-0aaa"
    },
    "pending_scripts": [],
    "snapshot_id": "snapshot-0768f",
    "snapshot_name": "Dev Environment 2025-11-03 17:00:33",
    "status": "available"
}
This endpoint retrieves detailed information about a specific Machine Snapshot within your enterprise.

Path Parameters

snapshot_id
string
required
The unique identifier of the Snapshot (e.g., “snapshot-abc123”)

Response

snapshot_id
string
Unique identifier for the Snapshot
snapshot_name
string
Descriptive name of the snapshot
description
string
Snapshot’s description
status
string
Current status of the Snapshot
created_at
string
Timestamp when the Snapshot was created
is_default
boolean
Set to True if this is its organization’s default snapshot.
pending_scripts
array
List of pending scripts against this snapshot
org
object
The Organization to which the Snapshot belongs to within the enterprise
curl -X GET "https://api.devin.ai/v2/enterprise/snapshots/snapshot-0768f" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
    "created_at": "2025-11-03T20:00:35.979306Z",
    "description": "This machine has the repositories set up",
    "is_default": true,
    "org": {
        "created_at": "2025-08-27T00:38:26.600708",
        "display_name": "Test Org Updated",
        "org_id": "org-0aaa"
    },
    "pending_scripts": [],
    "snapshot_id": "snapshot-0768f",
    "snapshot_name": "Dev Environment 2025-11-03 17:00:33",
    "status": "available"
}