# SendTo

For simple one-off document signings without the full signature request flow. **No API key or authentication is required** — this endpoint is publicly accessible.

:::info

Because no credentials are needed, SendTo is ideal for letting end-users or third parties trigger a signing directly from your application without exposing any API keys.

:::

```javascript
// Create a send-to request
const sendTo = await api.post('/sendto', {
  content: base64EncodedPdf,
  signer_email_address: 'signer@example.com',
  title: 'Document to Sign'
});

// Track status
const status = await api.get(`/sendto/${sendTo.id}/track`);

// Download when complete
const signedDoc = await api.get(`/sendto/${sendTo.id}/download`);
```

Documents expire after **90 days**. Unclaimed requests expire after **1 day**. SendTo is simpler than full signature requests but less flexible.
