File size: 642 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # Snapshot
Get an accessibility snapshot of the current page, including element refs that can be reused by action commands.
```bash
curl "http://localhost:9867/snapshot?filter=interactive"
# CLI Alternative
pinchtab snap -i
# Response
{
"url": "https://example.com",
"title": "Example Domain",
"nodes": [
{
"ref": "e5",
"role": "link",
"name": "More information..."
}
],
"count": 1
}
```
Useful flags:
- CLI: `-i`, `-c`, `-d`, `--selector`, `--max-tokens`, `--depth`
- API query: `filter`, `format`, `diff`, `selector`, `maxTokens`, `depth`
## Related Pages
- [Click](./click.md)
- [Tabs](./tabs.md)
|