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:
https://fancyytext.com/api/generate.json
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| text Required | string | The raw text string you want to convert. |
| decor | string | The 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 ♔ |
| modifiers | string | A comma-separated list of stackable modifiers to apply. strike:S̶ underline:U̲ slash:S̷ tilde:S̴ overline:O̅ bridge:B̪ |
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.