Fake Translation

⚡ Generators 🌭🌭 Medium 2,145 calls

The Fake Translation API takes any English phrase and translates it into a made-up language. The translation is deterministic by input. Returns the translation, a pronunciation guide, register (formal/informal/archaic), a confident grammar rule, and a cultural note.

Try It — No Seriously

Fake Translation.exe
_ ×
The English phrase.
The target language.

Parameters

Parameter Type Required Default Description
english string Required The English phrase.
language string Required The target language.

Examples

curl "https://api.stupidapis.com/fake-translation/translate?english=Hello&language=Verdantian"
import requests

response = requests.get(
    "https://api.stupidapis.com/fake-translation/translate",
    params={"english": "Hello", "language": "Verdantian"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/fake-translation/translate?english=Hello&language=Verdantian"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
english string Echoed back
language string Echoed back
translation string The fake translation
pronunciation string Pronunciation guide
register string formal / informal / archaic / etc.
grammar_note string A confident grammar rule
cultural_note string A cultural note

Example Response

{
  "english": "Hello",
  "language": "Verdantian",
  "translation": "florbnak",
  "pronunciation": "flo·rbna·k",
  "register": "formal",
  "grammar_note": "verbs are inflected for the speaker's mood, not tense",
  "cultural_note": "spoken in three valleys"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidapis.com/fake-translation/mcp
POST https://api.stupidapis.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy