pinch / docs /reference /eval.md
AUXteam's picture
Upload folder using huggingface_hub
25b930c verified
# Eval
Run JavaScript in the current tab. This endpoint is disabled unless evaluation is explicitly enabled in config.
```bash
curl -X POST http://localhost:9867/evaluate \
-H "Content-Type: application/json" \
-d '{"expression":"document.title"}'
# CLI Alternative
pinchtab eval "document.title"
# Response
{
"result": "Example Domain"
}
```
Notes:
- requires `security.allowEvaluate: true`
- the tab-scoped variant is `POST /tabs/{id}/evaluate`
## Related Pages
- [Config](./config.md)
- [Tabs](./tabs.md)