# Sealing

For documents that need an organizational seal rather than personal signatures:

```javascript
const sealedDoc = await api.post('/seal', {
  content: base64EncodedPdf,
  account_name: 'your-seal-account'
});
```

:::tip

Use `"account_name": "ais_demo_seal"` to test sealing with a production API key without incurring costs.

:::
