Endpoints
List snapshots
Return snapshot metadata for a script.
GET
List snapshots
Returns snapshot metadata only.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Return snapshot metadata for a script.
curl --request GET \
--url https://api.example.com/v1/projects/{project_id}/scripts/{script_id}/snapshotscurl "https://api.arcstudiopro.com/v1/projects/project_.../scripts/script_.../snapshots" \
-H "Authorization: Bearer $ARC_STUDIO_API_KEY"
{
"object": "list",
"url": "/v1/projects/project_.../scripts/script_.../snapshots",
"has_more": false,
"data": [
{
"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