Skip to content

Truth or Dare Engine

This API provides random “Truth” questions or “Dare” challenges to create a fun, interactive experience for chat bots and games.

To make the response visually appealing in modern UI wrappers, it returns the text challenge alongside a curated thematic image URL.

POST /api/v1/truth-dare

The following parameters are accepted in the request body:

FieldTypeRequiredDescription
typestringYesSelect mode: truth or dare.
Terminal window
curl -X POST https://heavstal.com.ng/api/v1/truth-dare \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"type": "dare"}'
{
"status": "success",
"code": 200,
"creator": "HEAVSTAL TECH",
"data": {
"image": "https://files.catbox.moe/dare2.jpg",
"type": "dare",
"result": "Do 20 pushups immediately."
}
}