AI-powered PDF customization for the web

v0.5.1

CDN URLs

JavaScript
https://sdk.glyph.you/glyph.min.js
ES Module
https://sdk.glyph.you/glyph.esm.js

Quick Start

<!-- 1. Include the SDK -->
<script src="https://sdk.glyph.you/glyph.min.js"></script>

<!-- 2. Add the editor component -->
<glyph-editor
  api-key="gk_your_api_key"
  template="quote-modern"
></glyph-editor>

ES Module Usage

import { GlyphEditor, GlyphAPI } from
  'https://sdk.glyph.you/glyph.esm.js';

// Initialize the API client
const api = GlyphAPI({ apiKey: 'gk_your_api_key' });

// Generate a PDF
const pdf = await api.generate({
  template: 'quote-modern',
  data: { customerName: 'Acme Corp' }
});

Resources