Calligraphy API
Generate Arabic and cursive calligraphy images from your app.
Add calligraphy rendering to tattoo previews, wedding stationery tools, Shopify/Etsy personalization, product mockups, language apps, and name-art workflows. Start with a free API key, then scale with predictable monthly render bundles.
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);Pricing
Simple render bundles for a lean launch.
Use Free for testing, Starter for indie products, Pro for production apps, and Business for higher-volume personalization workflows.
Free Test Mode
$0
100 renders/month
- β100 test renders/month
- βAPI docs and OpenAPI access
- βWatermark-free evaluation output
Starter
$19/mo
1,000 renders/month
- β1,000 renders/month
- βCommercial PNG output
- βTransparent backgrounds
- βEmail support
Pro
$49/mo
5,000 renders/month
- β5,000 renders/month
- βBatch-ready workflow
- βPriority render limits
- βAdvanced style presets
Business
$149/mo
25,000 renders/month
- β25,000 renders/month
- βWhite-label output
- βBilling portal access
- βPriority support
Arabic name rendering
Arabic Calligraphy API
Generate Arabic names and phrases in Diwani, Thuluth, Koufi, and handwritten styles for apps, tattoos, gifts, and product previews.
Personalized names
Name Calligraphy API
Turn names into calligraphy images for personalization flows, profile art, onboarding gifts, certificates, and custom product previews.
Tattoo preview rendering
Tattoo Calligraphy API
Create calligraphy tattoo previews in Arabic and cursive styles with transparent backgrounds for tattoo studios and inspiration websites.
Invitations and stationery
Wedding Calligraphy API
Generate elegant name, monogram, place-card, and invitation calligraphy images for wedding tools and stationery businesses.
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.
Developer experience
One account, one dashboard, one first successful render.
- 1. Sign up with email or magic link and land directly in `/dashboard`.
- 2. Create an API key and copy it once from the dashboard.
- 3. Paste a cURL, JavaScript, or Python example and generate your first transparent PNG.
- 4. Upgrade through Stripe when you need more monthly renders.
curl https://www.calligraphy-generator.com/api/v1/generate \
-H "Authorization: Bearer cg_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"text": "Layla",
"style": "Diwani",
"resolution": "SQUARE_HD",
"transparent_background": true,
"text_color": "#111827",
"response_format": "data_url"
}'