For Agents
An agent can generate and search short-form content (facts, trivia, riddles, themed names, taunts, pirate and Shakespearean text) and mint utility artefacts (UUIDs, QR Codes, and barcodes) across the Fun Generators portfolio, then decode QR Code and barcode images back to their contents. All of these run against one shared credential, so one integration covers every generator.
Fun Generators packages many single-purpose generation and encoding utilities behind one vendor, one subscription, and one host, so a team can pull content APIs (facts, trivia, riddles, names, themed text) and utility APIs (UUIDs, QR Codes, barcodes) from the same place instead of stitching together separate providers. The APIs are deliberately small: each is a handful of endpoints returning short JSON, which keeps integration cost low for widgets, bots, and agent tools.
Use for: Generating and searching short-form novelty and content items (facts, trivia, riddles, themed names, taunts, pirate and Shakespearean text, lottery number sets) and encoding or decoding QR Code, barcode, and UUID utility artefacts, all against one Fun Generators subscription.
Not supported: real-time news retrieval, fact verification, quiz scoring engine, content moderation, audio or speech, real lottery draws
Credentials: All Fun Generators APIs authenticate against the same api.fungenerators.com host using one Fun Generators subscription credential, though individual APIs accept it either as a bearer token in the Authorization header or as an API key in the X-Fungenerators-API-Secret header.
All 11 Fun Generators OpenAPI specs are vendor-official and indexed by Jentic, kept validated and agent-ready.
Fun Generators is a family of small, focused REST APIs from a single vendor that generate and transform lightweight content on demand. The portfolio spans random facts, trivia, riddles, and themed taunts; pirate and Shakespearean name, insult, lorem ipsum, and translation generation; random name generation across many categories; random lottery number draws; UUID generation; and QR Code and barcode image encoding and decoding. Every API returns short JSON payloads that drop straight into a UI or an agent tool output, and all of them share one Fun Generators subscription and one base host at api.fungenerators.com. The APIs suit daily content widgets, quiz and puzzle apps, classroom warmups, chatbot and voice assistant small talk, novelty and marketing campaigns, and back-office labelling and identifier workflows.
11 APIs across 3 product groups.
| I want to... | Use | Why |
|---|---|---|
| Fill conversational or content gaps with a short random item | Facts API | Returns declarative standalone facts, on-this-day events, and number trivia rather than question-answer pairs. |
| Fill conversational or content gaps with a short random item | Trivia API | Returns quiz-style items with category metadata drawn from thousands of categories, best when you want a topic selector. |
| Fill conversational or content gaps with a short random item | Random Riddles API | Returns wordplay question-answer riddles for interactive puzzle moments rather than factual content. |
| Generate a scannable code image from a value | Fun Generators API | Encodes URLs, text, contacts, and other payloads as QR Code images and decodes them back. |
| Generate a scannable code image from a value | Barcode API | Encodes numeric values into industry-standard 1D barcodes for labels and asset tags, and decodes barcode images. |
| Produce a themed insult or taunt | Taunt as a service | Generates general themed taunts across many categories, the broadest option for roast features. |
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Fun Generators APIs, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Ffungenerators.com" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Ffungenerators.com" | 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.
Once connected, ask your agent something like: “generate random content or a scannable code with fun generators”.
Each workflow spans multiple Fun Generators APIs. Jentic routes each operation to the right API automatically.
Daily content widget rotation
Rotate a homepage or newsletter widget through a fact, a piece of trivia, and a riddle so the daily content stays varied without maintaining a corpus. Each morning the agent pulls one item from each source and publishes them together, caching for the day to keep quota use low.
Each morning call the random fact, random trivia, and random riddle operations, then publish all three items in the daily widget and cache them for 24 hours.
Facts API + Trivia API + Random Riddles API
Tracked, scannable asset generation
Mint a unique identifier for each asset or ticket and immediately encode it as a scannable image, producing a traceable artefact in two calls. Choose a QR Code for URL and contact payloads or a barcode for numeric label formats.
Call the UUID generate operation for each asset, then pass the identifier into either the QR Code URL operation or the barcode encode operation to produce a scannable image.
UUID Generation API + Fun Generators API + Barcode API
Themed chatbot persona content
Give a chatbot a consistent themed voice by generating a persona name, translating user prompts into that voice, and lobbing a themed taunt on cue. The same pattern works for a pirate persona, a Shakespearean persona, or a general roast bot.
Generate a persona name from the pirate or Shakespeare generator, translate incoming messages with the matching translate operation, and call the taunt generator when the user asks for a roast.
Pirates API + Shakespeare API + Taunt as a service
Quiz app content and feedback
Back a quiz or classroom app with trivia questions and riddles, then reply to wrong answers with a themed taunt so the feedback stays playful and on-brand. One subscription supplies both the questions and the comedic responses.
Fetch a trivia item or riddle to pose the question, then on an incorrect answer call the taunt generator with a matching category and display the taunt.
Trivia API + Random Riddles API + Taunt as a service
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Fun Generators portfolio by hand means mapping the routes for each generator and encoder separately and threading the subscription credential through each one against api.fungenerators.com. With Jentic you install Jentic One once, then find and add any of the Fun Generators APIs from the Jentic directory into your workspace and let your agent call them.
Permission scoping
Most of these APIs take their input in query or body parameters rather than resource paths, and a few (riddle, trivia) expose write operations like create, update, and delete. Your own rules decide which operations across the portfolio the agent may run, so you can allow read and generation operations while leaving the write operations out of the allowed set.
Credential isolation
Your single Fun Generators subscription credential is stored encrypted by your own Jentic One instance and injected as the bearer token or the X-Fungenerators-API-Secret header at execution time, depending on the API. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search the Jentic directory by intent such as 'get a random fact', 'generate a qr code for a url', or 'generate a random lottery draw', and Jentic returns the matching Fun Generators operation with its parameter schema so the agent calls the right endpoint without browsing the reference docs.
Specific to using Fun Generators APIs through Jentic.
Does one credential work across all the Fun Generators APIs?
Yes. Every API in the portfolio runs against the same api.fungenerators.com host under one Fun Generators subscription. Some APIs accept the credential as a bearer token in the Authorization header and others as an API key in the X-Fungenerators-API-Secret header, but it is the same underlying subscription key.
Which Fun Generators APIs generate images rather than text?
The QR Code API and the Barcode API return image output and can also decode uploaded images back into their contents. Every other API in the portfolio returns short text or JSON only, so for a spoken or styled result you would pair the output with a separate provider.
When should I pick facts, trivia, or riddles for content?
Use the Facts API for declarative standalone facts and on-this-day content, the Trivia API for category-tagged quiz-style items with a topic selector, and the Random Riddles API for wordplay question-answer puzzles. Many content widgets rotate through all three for variety.
What are the rate limits across the portfolio?
The OpenAPI specs do not declare explicit rate limits. Fun Generators applies plan-based quotas published on its subscription page, so the caps depend on the tier you signed up for. Caching one-shot lookups such as category and supported-game lists keeps runtime calls focused on generation.
Are these APIs suitable for production or only for novelty use?
It depends on the API. The QR Code, Barcode, and UUID APIs support production labelling, identifier, and tracking workflows, while the fact, trivia, riddle, name, taunt, pirate, Shakespeare, and lottery generators are best treated as content and novelty sources rather than authoritative data.
Can these APIs verify facts or run a real lottery?
No. The Facts and Trivia APIs return curated content and do not verify accuracy in real time or fetch news, and the Lottery API only generates random lottery-shaped number sets. None of the APIs run real draws, sell tickets, or pay out winnings.
All 4 are in the Jentic catalogue with the same one-credential, intent-search pattern.
BOOK A DEMO
Browse thousands of APIs and connect them all to your agent with Jentic One. One layer, one credential — every API your agent needs.