Memesio
Meme-generation API with captions and share links.
A meme-creation service offering templates, AI caption helpers and hosted share links, pitched at apps and agents. Most generation endpoints require an API key, but some metadata reads respond without one. This entry probes the keyless caption tone-preset catalog.
GET https://memesio.com/api/ai/captions/tone-presets
{
"ok": true,
"presets_first": {
"id": "brand-default-corporate-safe",
"name": "corporate-safe",
"locale": "en",
"voiceRules": [
"brand-safe phrasing only",
"avoid sarcasm toward customers"
],
"blockedTerms": [
"nsfw",
"toxic"
]
}
}curl "https://memesio.com/api/ai/captions/tone-presets"const res = await fetch("https://memesio.com/api/ai/captions/tone-presets");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://memesio.com/api/ai/captions/tone-presets")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/ai/captions/tone-presetsPROBEDMeme-generation API with captions and share links.
/aiAi — documented GET route.
/ai/1Ai details by ID (example: 1).
/ai?limit=10Ai — documented GET route.
/ai/search?q=testSearch by query parameters.
/api/openapiOpenapi — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Memesio: common questions
Is Memesio free to use?
Yes — Memesio is a free fun API. Free tier: Public metadata endpoints keyless; generation needs an API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Memesio need an API key?
No — Memesio needs no API key or signup. You can call it straight away; rate limits still apply (80 req/window · 79 remaining).
Can I call Memesio from the browser?
Not directly — Memesio doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Memesio up right now?
As of our last scheduled check, Memesio is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.