> ## Documentation Index
> Fetch the complete documentation index at: https://docs.api.arcstudiopro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get snapshot document

> Return a fixed snapshot document as JSON or Markdown.

Use `format` as `json` or `md`. Document data for a fixed snapshot does not change.

```bash theme={null}
curl "https://api.arcstudiopro.com/v1/projects/project_.../scripts/script_.../snapshots/snapshot_.../document.json" \
  -H "Authorization: Bearer $ARC_STUDIO_API_KEY"
```

```json theme={null}
{
  "id": "snapshot_...",
  "object": "script_snapshot",
  "script_id": "script_...",
  "document": { "object": "document", "paragraphs": [] },
  "stashes": []
}
```
