For Agents
Retrieve random facts, fact-of-the-day, on-this-day events, number trivia, and search the facts corpus by keyword.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Facts API, 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 Facts API API.
Retrieve a random fact for general-purpose content surfaces
Get a daily fact-of-the-day from a chosen category
Look up on-this-day events, births, and deaths for a given date
Generate a fact about a specific number for math and trivia widgets
GET STARTED
Use for: Retrieve a random fact for the homepage banner, Get the fact of the day in the science category, Find historical events that happened on June 10, Look up who was born on this day
Not supported: Does not verify factual accuracy in real time, fetch news, or generate quiz questions — use for retrieving curated random facts and on-this-day content only.
The Facts API serves random facts, on-this-day events, birth and death anniversaries, number-based trivia, and keyword search across a curated facts corpus. Twelve endpoints cover random retrieval, search, category listing, fact-of-the-day, on-this-day events, and direct CRUD-like operations on individual facts. The API powers daily content widgets, classroom activities, social media filler, voice assistant briefings, and chatbot small talk. Responses are short JSON payloads that drop into UIs and agent tool outputs without further shaping.
Search the facts corpus by keyword for topical content
List all supported fact categories for selection menus
Patterns agents use Facts API API for, with concrete tasks.
★ Daily Content Widgets and Newsletters
Editorial teams use the Facts API to power 'fact of the day' widgets, daily newsletter intros, and homepage banners. The fact-of-the-day endpoint delivers a category-relevant item per day, while the on-this-day endpoints add anniversary content automatically. Integration is a small set of cached calls per category.
Each morning call GET /fact/fod for category=history and GET /fact/onthisday/event for today's date, then publish both items in the newsletter.
Classroom and Educational Apps
Teachers and edtech apps use the Facts API for warmup activities, daily trivia, and prompt material. The category list and search endpoints let learners drill into specific topics, and number trivia adds context to maths lessons. The corpus is curated, so output is suitable for school-age audiences when categories are scoped.
For a maths warmup, call GET /fact/numbers with number=12 and present the returned fact to the class.
Voice Assistant and Chatbot Small Talk
Voice assistants and chatbots use the random fact and search endpoints to fill conversational gaps with relevant trivia. The bot can answer 'tell me a fun fact about space' by calling the search endpoint with the keyword and reading the result back, or fall back to a random fact when the user's intent is open-ended.
When the user says 'tell me something interesting about space', call GET /fact/search with q=space and read the first result aloud.
AI Agent Daily Briefing Tool
Wire the Facts API into Jentic so any agent can produce a quick on-this-day briefing or a topical fact on demand. Through Jentic the agent searches by intent, the bearer token stays vaulted, and the agent receives structured fact JSON it can summarise in a chat reply or push to a daily digest channel.
Use Jentic to search 'get on this day events for today', load GET /fact/onthisday/event, and execute it with month and day for the current date.
12 endpoints — the facts api serves random facts, on-this-day events, birth and death anniversaries, number-based trivia, and keyword search across a curated facts corpus.
METHOD
PATH
DESCRIPTION
/fact/random
Retrieve a random fact
/fact/fod
Get the fact of the day
/fact/onthisday/event
Get historical events for a date
/fact/onthisday/born
Get notable births on a date
/fact/onthisday/died
Get notable deaths on a date
/fact/numbers
Get trivia about a specific number
/fact/search
Search facts by keyword
/fact/categories
List fact categories
/fact/random
Retrieve a random fact
/fact/fod
Get the fact of the day
/fact/onthisday/event
Get historical events for a date
/fact/onthisday/born
Get notable births on a date
/fact/onthisday/died
Get notable deaths on a date
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Fungenerators bearer token is stored encrypted in the Jentic vault. Agents call any of the twelve fact operations through Jentic and the token is injected at execution, never inside the agent's prompt or logs.
Intent-based discovery
Agents search Jentic with intents like 'get on this day events for today' or 'search facts by keyword' and receive the matching operation along with its parameter schema, ready to execute.
Time to first call
Direct Fungenerators integration: half a day for auth, retries, and shaping responses across twelve endpoints. Through Jentic: under 30 minutes from search to first successful call.
Alternatives and complements available in the Jentic catalogue.
Trivia API
Same vendor; question-answer trivia format instead of standalone facts
Choose Trivia when the use case needs Q&A pairs for quizzes rather than declarative facts.
Random Riddles API
Same vendor; pairs riddles with facts for daily content rotation
Add Riddles when you want a mix of facts and puzzles in the same daily digest.
Name Generation API
Same vendor; combines themed names with facts for richer content surfaces
Use Namegen alongside Facts when building character profiles that need both a name and a contextual fact.
Specific to using Facts API API through Jentic.
What authentication does the Facts API use?
It uses HTTP bearer token authentication. Through Jentic the bearer token is stored encrypted and attached at request time, so the agent never sees the raw secret.
Can I get on-this-day events with the Facts API?
Yes. Call GET /fact/onthisday/event with month and day parameters for events, GET /fact/onthisday/born for births, and GET /fact/onthisday/died for deaths.
What are the rate limits for the Facts API?
The OpenAPI spec does not declare explicit rate limits. Fungenerators applies plan-based quotas listed on its subscription page at fungenerators.com, so consult your plan for the per-minute and per-day caps.
How do I retrieve a daily fact through Jentic?
Search 'get the fact of the day' via the Jentic SDK or MCP server, load GET /fact/fod, and execute it with the desired category. Install with pip install jentic and authenticate using your ak_* key.
Can I search the facts corpus by keyword?
Yes. Call GET /fact/search with the q query parameter set to your keyword. The endpoint returns matching facts as a JSON array.
Does the API include fact categories I can browse?
Yes. Call GET /fact/categories to list every supported category, then pass the chosen category into endpoints like GET /fact/fod or GET /fact/random where supported.
/fact/numbers
Get trivia about a specific number
/fact/search
Search facts by keyword
/fact/categories
List fact categories