This endpoint retrieves detailed information about a specific Machine Snapshot within your enterprise.
Path Parameters
The unique identifier of the Snapshot (e.g., “snapshot-abc123”)
Response
Unique identifier for the Snapshot
Descriptive name of the snapshot
Current status of the Snapshot
Timestamp when the Snapshot was created
Set to True if this is its organization’s default snapshot.
List of pending scripts against this snapshotShow Snapshot Script Object
Unique identifier for the Script
Descriptive name of the script
Timestamp when the Script was created
The Organization to which the Snapshot belongs to within the enterprise
Unique identifier for the Organization
Descriptive name of the organization
Timestamp when the Organization was created
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"
}