Invitations and stationery
Wedding Calligraphy API
Generate elegant name, monogram, place-card, and invitation calligraphy images for wedding tools and stationery businesses.
1
Import guest or couple names
2
Render matching calligraphy styles
3
Export PNGs for invitations and table plans
Built for production personalization
- β API keys and per-account usage metering
- β Transparent PNG output for compositing
- β Arabic and English/cursive styles at launch
- β Stripe plans for Free, Starter, Pro, and Business usage
const response = await fetch('https://www.calligraphy-generator.com/api/v1/generate', {
method: 'POST',
headers: {
Authorization: 'Bearer cg_live_your_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
text: 'Layla',
style: 'Diwani',
resolution: 'SQUARE_HD',
transparent_background: true,
response_format: 'data_url',
}),
});
const generation = await response.json();
console.log(generation.image.data_url);