/font

Convert your text into different font.

This endpoint will require a POST request.

Endpoint Headers:

  • apikey - Your Api Auth Key [String] (Required)

Endpoint Body Parameters

  • font - Font to use [String] (Required)

  • text - Text to convert [String] (Required)

List of Available Fonts

arrow-below - A͎r͎r͎o͎w͎ B͎e͎l͎o͎w͎

asterisk - A͙s͙t͙e͙r͙i͙s͙k͙

binary - 01000010 01001001 01001110 01000001 01010010 01011001

brackets-bold - 【B】【r】【a】【c】【k】【e】【t】【s】 【B】【o】【l】【d】

brackets-outline - 『B』『r』『a』『c』『k』『e』『t』『s』 『O』『u』『t』『l』『i』『n』『e』

brackets - [̲̅B][̲̅r][̲̅a][̲̅c][̲̅k][̲̅e][̲̅t][̲̅s]

bridge-above - B͆r͆i͆d͆g͆e͆ A͆b͆o͆v͆e͆

bridge-below - B̺r̺i̺d̺g̺e̺ B̺e̺l̺o̺w̺

checked - C᩶h᩶e᩶c᩶k᩶e᩶d᩶

circle-black - 🅒🅘🅡🅒🅛🅔 🅑🅛🅐🅒🅚

circle-white - Ⓒⓘⓡⓒⓛⓔ Ⓦⓗⓘⓣⓔ

clouds - C͡l͡o͡u͡d͡s͡

currency - ₵ɄⱤⱤɆ₦₵Ɏ

curvy - ᑕᑌᖇᐯY

devlish - ԃҽʋʅιʂԋ

dot-above - Ḋȯṫ Ȧḃȯv̇ė

fairy - ᎦᏗᎥᏒᎩ

fraktur-bold - 𝕱𝖗𝖆𝖐𝖙𝖚𝖗 𝕭𝖔𝖑𝖉

fraktur - 𝔉𝔯𝔞𝔨𝔱𝔲𝔯

full-width - Full Width

gothic-bold - 𝕲𝖔𝖙𝖍𝖎𝖈 𝕭𝖔𝖑𝖉

gothic - 𝔊𝔬𝔱𝔥𝔦𝔠

happy - H̐̈a̐̈p̐̈p̐̈y̐̈

leet - 1337

lightning - L͛i͛g͛h͛t͛n͛i͛n͛g͛

lines - ̿͟͞L̿͟͞i̿͟͞n̿͟͞e̿͟͞s̿͟͞

manga - 爪卂几Ꮆ卂

medieval - 𝕸𝖊𝖉𝖎𝖊𝖛𝖆𝖑

morse - -----.-.....

old-italic - Ꝋ𐌋𐌃 𐌉𐌕𐌀𐌋𐌉𐌂

outline - 𝕆𝕦𝕥𝕝𝕚𝕟𝕖

overline - O͞v͞e͞r͞l͞i͞n͞e͞

plus-below - P̟l̟u̟s̟ B̟e̟l̟o̟w̟

rings - R̥ͦi̥ͦn̥ͦg̥ͦs̥ͦ|||sad - S̑̈ȃ̈d̑̈

script-bold - 𝓢𝓬𝓻𝓲𝓹𝓽 𝓑𝓸𝓵𝓭

script - 𝒮𝒸𝓇𝒾𝓅𝓉

serif-bold - 𝐒𝐞𝐫𝐢𝐟 𝐁𝐨𝐥𝐝

serif-italic - 𝑆𝑒𝑟𝑖𝑓 𝐼𝑡𝑎𝑙𝑖𝑐

slash - S̷l̷a̷s̷h̷

smooth - ʂɱσσƚԋ

square-black - 🆂🆀🆄🅰🆁🅴 🅱🅻🅰🅲🅺

square-white - 🅂🅀🅄🄰🅁🄴 🅆🄷🄸🅃🄴

squiggle - ꇙꆰ꒤꒐ꍌꍌ꒒ꏂ|||swap - Ŝ̬ŵ̬â̬p̬̂

tiny - ᵀᶦⁿʸ

typewriter - 𝚃𝚢𝚙𝚎𝚠𝚛𝚒𝚝𝚎𝚛

underline - U͟n͟d͟e͟r͟l͟i͟n͟e͟

upsidedown - ∩dsıpǝpoʍu

wizard - աɨʐǟʀɖ

Examples:

Data API version required. Must replace <version> with either release or beta.

Bot Designer for Discord

Example usage of /font endpoint using BDFD

$httpAddHeader[apikey;<YOUR-API-KEY>]
$httpPost[https://bdfddata.rickyjs.xyz/<version>/font;{
font: 'fraktur',
text: 'test'
}]


$httpResult OR $httpResult[details]
Discord.js

Example usage of /font endpoint using Discord.js

const axios = require('axios');
(async () => {
return await axios.post('https://bdfddata.rickyjs.xyz/<version>/font', 
{  font: 'fraktur',
text: 'test'
}, { 
headers: {
'apikey': <YOUR-API-KEY>,
}
}).then(res=>res.data)
})()

Possible Responses (Codes)

Code 200

API succeeded and details were fetched.

{
 status: 200,
 details: '𝔱𝔢𝔰𝔱'
  //result is based off your input and may not be what you're expecting
  // this result is based off the examples used above.
}}
Code 400

An error occurred that stopped execution.

{
    status: 400
    error: 'Cannot read ...  (This can vary)'
}

Last updated