This endpoint will require a POST request.
apikey - Your Api Auth Key [String] (Required)
emoji - Unicode Emoji to fetch [String] (Required)
Data API version required. Must replace <version> with either release or beta.
<version>
Example usage of /emoji-info endpoint using BDFD
/emoji-info
$httpAddHeader[apikey;<YOUR-API-KEY>] $httpPost[https://bdfddata.rickyjs.xyz/<version>/emoji-info;{ emoji: 'π' }] $httpResult OR $httpResult[details]
Example usage of /emoji-info endpoint using Discord.js
const axios = require('axios'); (async () => { return await axios.post('https://bdfddata.rickyjs.xyz/<version>/emoji-info', { emoji: 'π' }, { headers: { 'apikey': <YOUR-API-KEY>, } }).then(res=>res.data) })()
API succeeded and details were fetched.
An error occurred that stopped execution.
Last updated 1 year ago
{ status: 200, details: { input: 'π', unicodeHex: '1f44e-20', twemoji: 'https://twemoji.maxcdn.com/v/latest/72x72/1f44e-20.png' } }
{ status: 400 error: 'Cannot read ... (This can vary)' }