Your API Keys

API Documentation

Include QuillKit via CDN

Add QuillKit to your HTML with a simple script tag:

Using Your API Key

Include your API key when initializing the editor:

const editor = QuillKit.init('#my-editor', {
  apiKey: 'YOUR_API_KEY_HERE',
  // Your configuration options
});

URL Restrictions

For enhanced security, you can restrict API keys to specific URLs. When creating a key, specify allowed origins to prevent unauthorized use on other domains.

Examples:
  • https://myapp.com - Exact domain
  • https://*.myapp.com - All subdomains
  • http://localhost:3000 - Local development

Rate Limits

API rate limits vary by plan:

  • Free: 1,000 calls/month
  • Basic: 10,000 calls/month
  • Pro: 100,000 calls/month
  • Enterprise: Unlimited
View Full Documentation