Endpoints
Get snapshot
Return metadata for one script snapshot.
GET
Get snapshot
Returns metadata for one snapshot. It does not include document content.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Return metadata for one script snapshot.
curl --request GET \
--url https://api.example.com/v1/projects/{project_id}/scripts/{script_id}/snapshots/{snapshot_id}curl "https://api.arcstudiopro.com/v1/projects/project_.../scripts/script_.../snapshots/snapshot_..." \
-H "Authorization: Bearer $ARC_STUDIO_API_KEY"
{
"id": "snapshot_...",
"object": "script_snapshot",
"description": null,
"revision_color": null,
"created_at": "2026-06-24T12:00:00Z",
"formats": ["json", "md"]
}
curl --request GET \
--url https://api.example.com/v1/projects/{project_id}/scripts/{script_id}/snapshots/{snapshot_id}