Sapling sits on top of enterprise workspaces and messaging platforms to provide real-time suggestions that improve communication.
Grammar, autocomplete, AI detection, paraphrasing, and sentiment — one HTTP request away, with client libraries for Python and JavaScript.
Python
from sapling import SaplingClient
API_KEY = '<YOUR_API_KEY>'
client = SaplingClient(api_key=API_KEY)
edits = client.edits('Lets get started!', session_id='test_session')
JavaScript
const res = await fetch('https://api.sapling.ai/api/v1/edits', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
key: '<YOUR_API_KEY>',
text: 'Lets get started!',
session_id: 'test session',
}),
});
const { edits } = await res.json();
cURL
curl -X POST https://api.sapling.ai/api/v1/edits \
-H "Content-Type: application/json" \
-d '{
"key": "<api-key>",
"text": "Lets get started!",
"session_id": "test session"
}'
Use the pieces you need — as an API, an SDK component, a browser extension, or a tool your AI assistant can call.
Sapling provides integrations with popular messaging and CRM platforms such as ServiceNow, Salesforce, Zendesk, Amazon Connect, and Twilio Flex. The Sapling SDK supports most editors and platforms.
Private cloud with TLS and AES-256 encryption, plus PII redaction. Learn more.
Single Sign-On (SSO), SCIM, and Multi-Factor Authentication (MFA).
Start with a few lines of code. Self-hosted deployment is available.
No card required, cancel anytime. Start with the API, or install the extension and see suggestions in the tools you already use.
Rolling this out to a team? Contact us.