Tattoo preview rendering
Tattoo Calligraphy API
Create calligraphy tattoo previews in Arabic and cursive styles with transparent backgrounds for tattoo studios and inspiration websites.
1
Accept a visitor name or phrase
2
Render several calligraphy options
3
Show transparent tattoo-ready previews
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);