This API retrieves entries from Urban Dictionary, and return them formatted as plain text
Add a custom command using the ${customapi.url}, like the example bellow
${customapi.https://darckfast.com/api/urban?term=${pathescape ${0:}}&channel=$(channel)}Add a custom command using the $(urlfetch url), like the example bellow
$(urlfetch https://darckfast.com/api/urban?term=$(querystring)&channel=$(channel))Add a custom command using the $(customapi url), like the example bellow
$(customapi https://darckfast.com/api/urban?term=$(querystring)&channel=$(channel))Create a URL-Fetch command, like the example bellow
https://darckfast.com/api/urban?term=Command arguments&channel=Username of the channelThe API can be called directly with a GET HTTP request
curl https://darckfast.com/api/urban \\
--url-query 'term=my term' \\
--url-query 'channel=my channel name'