For Agents
Generate Shakespearean names, insults, lorem ipsum, and quotes, and translate English text into Shakespearean style.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Shakespeare 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 Shakespeare API API.
Generate a Shakespearean character name for stories or themed apps
Produce a Shakespeare-style insult for chat replies and game taunts
Generate Shakespearean lorem ipsum filler for design mockups
Retrieve a quote from Shakespeare's works for daily widgets
GET STARTED
Use for: Generate a Shakespearean character name, Translate this paragraph into Shakespearean English, Get a Shakespeare insult for the chatbot, Retrieve a Shakespeare quote for the daily widget
Not supported: Does not produce audio, modern paraphrases, or full play scripts — use for Shakespeare-themed text generation, quotes, and translation only.
The Shakespeare API generates Elizabethan-flavoured content on demand. Five endpoints cover random Shakespeare-style names, insults, lorem ipsum filler text, quotes from the canonical works, and translation of plain English into Shakespearean English. The API powers literary novelty sites, classroom warmups, themed marketing campaigns, and chat experiences that benefit from a period voice. Responses are short JSON strings ready to render in any UI or agent tool output.
Translate plain English into Shakespearean English
Patterns agents use Shakespeare API API for, with concrete tasks.
★ Literary and Classroom Apps
Educational sites, English literature apps, and theatre programmes use the Shakespeare API to surface daily quotes and themed names. Teachers can run a 'translate this sentence' warmup using the translation endpoint, or theatre teams can populate prop lists with Shakespearean names. Integration is two or three small calls per session.
Each morning call GET /shakespeare/quote and pin the result on the class portal as the quote of the day.
Themed Marketing and Novelty Sites
Marketing teams run Shakespeare-themed campaigns by translating taglines into Shakespearean English and decorating landing pages with period names and insults. The API handles the language transformation so designers can focus on layout and copy direction.
Translate the campaign tagline by calling GET /shakespeare/translate with the text query parameter, then schedule the result on social channels.
Chatbot Period Persona
A chatbot can adopt a Shakespearean persona by generating its own Shakespearean name on signup, translating user prompts into period English for replies, and dropping in a quote when the user asks for inspiration. The five endpoints cover the persona's main needs without external content.
On user prompt, call GET /shakespeare/translate with the message and reply with the translated version.
AI Agent Period Translation Tool
Wire the Shakespeare API into Jentic so any agent can produce Elizabethan-styled content on request. Through Jentic the agent searches by intent, the API key remains vaulted, and the agent receives the translation, quote, name, or insult as structured JSON.
Use Jentic to search 'translate text to shakespearean english', load GET /shakespeare/translate, and execute it with the user's input text.
5 endpoints — the shakespeare api generates elizabethan-flavoured content on demand.
METHOD
PATH
DESCRIPTION
/shakespeare/quote
Retrieve a Shakespeare quote
/shakespeare/translate
Translate English to Shakespearean English
/shakespeare/generate/name
Generate a Shakespearean name
/shakespeare/generate/insult
Generate a Shakespeare insult
/shakespeare/generate/lorem-ipsum
Generate Shakespearean lorem ipsum
/shakespeare/quote
Retrieve a Shakespeare quote
/shakespeare/translate
Translate English to Shakespearean English
/shakespeare/generate/name
Generate a Shakespearean name
/shakespeare/generate/insult
Generate a Shakespeare insult
/shakespeare/generate/lorem-ipsum
Generate Shakespearean lorem ipsum
Three things that make agents converge on Jentic-routed access.
Credential isolation
The X-Fungenerators-Api-Secret API key is held encrypted in the Jentic vault. Agents call Shakespeare operations through Jentic and the key is attached server-side, never inside the agent's prompt.
Intent-based discovery
Agents search Jentic for intents like 'translate text to shakespearean english' or 'get a Shakespeare quote' and receive the matching operation along with its parameter schema, ready to execute.
Time to first call
Direct Fungenerators integration: an hour or two for header auth and parameter handling. Through Jentic: under 15 minutes from search to first call.
Alternatives and complements available in the Jentic catalogue.
Pirates API
Same vendor; pirate-themed equivalent of names, insults, lorem ipsum, and translation
Choose Pirates when the desired voice is nautical rather than Elizabethan.
Taunt as a service
Same vendor; supplies general taunts to extend Shakespeare-themed roasts
Add Taunt when you need themed insults beyond the Shakespeare domain in the same app.
Name Generation API
Same vendor; supplies non-Shakespearean names alongside period-style options
Use Namegen for general or modern names where Shakespearean styling is too narrow.
Specific to using Shakespeare API API through Jentic.
What authentication does the Shakespeare API use?
It uses an API key supplied in the X-Fungenerators-Api-Secret request header. Through Jentic the key is held encrypted in the vault and attached at runtime, so agents never see the raw secret.
Can I translate text into Shakespearean English with this API?
Yes. Call GET /shakespeare/translate and pass the text as a query parameter. The response contains the Shakespearean translation as a string.
What are the rate limits for the Shakespeare API?
The OpenAPI spec does not declare explicit rate limits. Fungenerators applies plan-based quotas listed on the subscription page at fungenerators.com, so consult the plan you subscribed to for the per-minute and per-day caps.
How do I get a daily Shakespeare quote through Jentic?
Search 'get a Shakespeare quote' via the Jentic SDK or MCP server, load GET /shakespeare/quote, and execute it once per day. Install with pip install jentic and authenticate using your ak_* key.
Are Shakespeare quotes attributed to a specific play?
The quote endpoint returns text from Shakespeare's works. Attribution metadata depends on the response payload returned by the live API; consult the Fungenerators documentation for the latest field shape.
Does the API generate audio readings of quotes?
No. Responses are text only. To produce a spoken version, pass the returned text through a separate text-to-speech provider in your client.