BDFDiscordData
Search
K

/font

Convert your text into different font.
This endpoint will require a POST request.
This endpoint is only on the Beta Version of the API and may be unstable.
Please report any & all bugs to the Support Server

Endpoint Headers:

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

Endpoint Body Parameters

  • font - Font to use [String] (Required)
  • text - Text to convert [String] (Required)
A list of available fonts will be added soon.

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)'
}