Studio99
For Developers

Add Indian Calligraphy to Your Product with Studio99 API

2 min read
API IntegrationCalligraphyMakerDesign Tools

Studio99's REST API gives developers programmatic access to the same calligraphy generation engine that powers CalligraphyMaker, the Canva app, and the Adobe Express add-on.

This guide covers everything you need to integrate calligraphy generation into your product.

Quick Start

1. Get Your API Key

Sign up at accounts.studio99.app and navigate to the API section. The free Starter plan includes 100 API calls per month.

2. Make Your First Request

curl -X POST https://studio99.app/api/v1/generate \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "शुभ विवाह",
    "language": "hindi",
    "count": 4,
    "format": "svg"
  }'

3. Handle the Response

The API returns an array of generated results, each with:

  • SVG or PNG data (base64 encoded or URL)
  • Font metadata (name, style, weight)
  • Rendering dimensions

Core Endpoints

POST /api/v1/generate

Generate calligraphy from text input.

Parameters:

  • text (required) — The text to render
  • language — "hindi", "marathi", "gujarati", or "english"
  • count — Number of font variations to return (1-10, default 4)
  • format — "svg" or "png" (default "svg")

GET /api/v1/library/search

Search the Inkora text art library.

Query parameters:

  • q — Search query
  • language — Filter by language code (hi, mr, gu, en)
  • category — Filter by category slug
  • limit — Results per page (default 20, max 100)

GET /api/v1/fonts

List available font metadata.

Authentication

All requests require an API key passed via the X-API-Key header.

Use Cases

Wedding Invitation Builders

Let users type names and blessings, then generate calligraphy options they can place on invitation templates.

E-commerce Personalization

Add calligraphic text to products — mugs, t-shirts, phone cases — with the buyer's name or custom message.

Design Tool Plugins

Build add-ons for design software (like Studio99's own Canva and Adobe Express apps).

Messaging Bots

Create Telegram or WhatsApp bots that generate calligraphy images from user messages.

Pricing

PlanMonthly CallsDaily LimitPrice
Starter10010Free
Growth5,000200Contact
EnterpriseCustomCustomContact

View Full API Documentation →

Get Your API Key →

Try Studio99 for free

Generate Hindi, Marathi, and Gujarati calligraphy instantly.

Try Calligraphy Generator

Related Articles