For Agents
Generate themed random taunts and insults from many categories, with a separate endpoint to list the available categories.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Taunt as a service, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Taunt as a service API.
Generate a random taunt within a chosen themed category
List all supported taunt categories for selection menus
Produce comedic wrong-answer feedback for puzzle and quiz apps
Supply playful roast lines for chatbots and Discord bots
GET STARTED
Use for: Generate a taunt in the sports category, List all supported taunt categories, Find a roast line for a chatbot reply, Produce a wrong-answer taunt for a quiz app
Not supported: Does not moderate or filter content for safety, generate audio, or score user responses — use for retrieving themed taunts and category lists only.
The Taunt as a service API generates random taunts and insults across many themed categories. Two endpoints cover listing the supported categories and generating a taunt within a chosen category. The API powers playful roast features in chatbots, wrong-answer feedback in puzzle apps, and themed comedic content in social tools and games. Responses are short JSON strings ready to render in any UI without further processing.
Populate themed game NPCs with signature taunts
Patterns agents use Taunt as a service API for, with concrete tasks.
★ Wrong-Answer Feedback in Quiz Apps
Quiz and puzzle apps use a themed taunt as the response when a user answers incorrectly. Selecting a category that matches the quiz topic keeps the comedy on-brand. The integration is two calls: list categories once, then generate a taunt on each wrong answer.
On a wrong quiz answer, call GET /taunt/generate with category=sports and display the returned taunt to the user.
Chatbot Roast Mode
Chatbots and Discord bots add a 'roast me' command that calls the taunt endpoint and replies with a playful insult. Bot operators choose categories that match their server's tone, from gentle ribbing to harder-edged humour.
On the 'roast me' intent, call GET /taunt/generate with category=general and reply with the taunt.
Game NPCs with Signature Taunts
Game studios attach a taunt to each NPC profile to give them voice. The API supplies on-demand themed lines, so studios do not have to maintain a custom taunt corpus. NPCs can also speak a fresh line each encounter rather than the same scripted insult.
When the player engages an NPC, call GET /taunt/generate with the NPC's category to produce its line.
AI Agent Roast Tool
Wire the Taunt API into Jentic so any agent can produce a themed taunt on request. Through Jentic the agent searches by intent, the API key remains vaulted, and the agent receives the taunt JSON to use in its reply or in a downstream content workflow.
Use Jentic to search 'generate a themed taunt', load GET /taunt/generate, and execute it with the user's chosen category.
2 endpoints — the taunt as a service api generates random taunts and insults across many themed categories.
METHOD
PATH
DESCRIPTION
/taunt/generate
Generate a random taunt in a chosen category
/taunt/categories
List supported taunt categories
/taunt/generate
Generate a random taunt in a chosen category
/taunt/categories
List supported taunt categories
Three things that make agents converge on Jentic-routed access.
Credential isolation
The X-Fungenerators-Api-Secret API key is stored encrypted in the Jentic vault. Agents trigger taunt generation through Jentic and the key is attached server-side, never in the agent's prompt or logs.
Intent-based discovery
Agents search Jentic for intents like 'generate a themed taunt' and receive the GET /taunt/generate operation along with its parameter schema, ready to execute.
Time to first call
Direct Fungenerators integration: about an hour for header auth and category caching. Through Jentic: under 15 minutes to first successful call.
Alternatives and complements available in the Jentic catalogue.
Pirates API
Same vendor; pirate-themed insults as a focused alternative to general taunts
Choose Pirates when the desired voice is strictly nautical and the app does not need broader categories.
Shakespeare API
Same vendor; Shakespearean insults for period-themed apps
Pick Shakespeare for Elizabethan-flavoured insults rather than modern themed taunts.
Random Riddles API
Same vendor; pairs riddles with taunts for mixed-content puzzle apps
Combine Riddles and Taunts when wrong answers should trigger a themed insult.
Specific to using Taunt as a service API through Jentic.
What authentication does the Taunt as a service API use?
It uses an API key supplied in the X-Fungenerators-Api-Secret request header. Through Jentic the key is stored encrypted and attached at execution time, never in the agent's prompt.
Can I generate a category-specific taunt with this API?
Yes. Call GET /taunt/categories to list the supported categories, then GET /taunt/generate with your chosen category to receive a taunt in that style.
What are the rate limits for the Taunt API?
The OpenAPI spec does not declare explicit rate limits. Fungenerators applies plan-based quotas published on the subscription page at fungenerators.com, so consult the plan you signed up for.
How do I generate a taunt through Jentic?
Search 'generate a themed taunt' via the Jentic SDK or MCP server, load GET /taunt/generate, and execute it with the desired category. Install with pip install jentic and authenticate using your ak_* key.
Can I generate taunts in bulk?
The generate endpoint returns a single taunt per call. To get a batch, loop GET /taunt/generate N times in your client and de-duplicate as results arrive.
Are taunt categories user-configurable?
No. Categories are fixed by Fungenerators and only modifiable by them. Call GET /taunt/categories at any time to see the current set.