Developer API

Integrate our powerful fancy text generation engine directly into your Discord bots, web applications, or automation scripts. 100% free to use.

The Endpoint

Send a GET request to the following URL:

Query Parameters

ParameterTypeDescription
text RequiredstringThe raw text string you want to convert.
decorstringThe ID of the edge decoration to wrap the text in.
stars:★ text ★
sparkles:✨ text ✨
wings:꧁ད text ཌ꧂
brackets:【 text 】
hearts:♥ text ♥
cross:✝ text ✝
music:♫ text ♫
fire:🔥 text 🔥
crown:♔ text ♔
modifiersstringA comma-separated list of stackable modifiers to apply.
strike:
underline:
slash:
tilde:
overline:
bridge:

Example Request

Fetching the text "Developer" wrapped in wings and struck-through.

fetch('https://fancyytext.com/api/generate.json?text=Developer&decor=wings&modifiers=strike')
  .then(res => res.json())
  .then(data => console.log(data));

Example Response

{
  "success": true,
  "original": "Developer",
  "count": 52,
  "results": [
    {
      "id": "fraktur",
      "name": "Fraktur",
      "result": "༑ ̶𝔇̶𝔢̶𝔳̶𝔢̶𝔩̶𝔬̶𝔭̶𝔢̶𝔯 ༑"
    },
    // ... 51 more results
  ]
}

Rate Limits

The API is currently free and open for public use. To ensure stability for everyone, please keep requests reasonable (under 50 requests per minute). If you need higher limits for a commercial application, please contact us.