Medieval Job Title
The Medieval Job Title API converts your modern title into something more dignified. "Senior Frontend Engineer" becomes "Royal Illuminator of Glass Tablets." Each conversion ships with three responsibilities, a court role (minor/middle/high), an email signature, and an approximate year somewhere between 1100 and 1500.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
title |
string |
Required | — | Modern job title, e.g. "Senior Frontend Engineer" |
Examples
curl "https://api.stupidapis.com/medieval-job-title/convert?title=Senior+Frontend+Engineer"
import requests
response = requests.get(
"https://api.stupidapis.com/medieval-job-title/convert",
params={"title": "Senior Frontend Engineer"}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/medieval-job-title/convert?title=Senior+Frontend+Engineer" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
modern_title |
string |
The original title |
medieval_title |
string |
The medieval equivalent |
court_role |
string |
minor / middle / high |
responsibilities |
string[] |
Three duties |
email_signature |
string |
Drop into your email client |
approximate_year |
number |
Era of practice (1100-1500) |
Example Response
{
"modern_title": "Senior Frontend Engineer",
"medieval_title": "Royal Illuminator of Glass Tablets",
"court_role": "middle",
"responsibilities": [
"maintain the parchment ledgers",
"attend the morning briefing of the Council",
"inspect the seals before they are broken"
],
"email_signature": "In service to the Crown,\nRoyal Illuminator of Glass Tablets",
"approximate_year": 1247
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/medieval-job-title/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.