POD and commerce previews
Personalized Product Image API
Render customer names in calligraphy for Shopify, Etsy, print-on-demand, jewelry cards, mugs, posters, and wall-art previews.
1
Receive customer personalization text
2
Generate a transparent calligraphy image
3
Composite it into your product preview
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);