Endpoint: https://slug.techtenstein.com
Convert any text to a URL-safe slug. Unicode-aware — German umlauts, French accents, Spanish tildes, all handled properly. 60ms p50 latency globally.
curl "https://slug.techtenstein.com/?text=Hello%20World%202026"
{"slug":"hello-world-2026","length":16,"processing_ms":0}
curl "https://slug.techtenstein.com/?text=M%C3%BCnchen%20Stra%C3%9Fe%20caf%C3%A9%20se%C3%B1or"
{"slug":"muenchen-strasse-cafe-senor"}
text — text to slugify (max 500 chars, required)max — max length (default 60)sep — separator character (default -)lower — lowercase output (default true)curl -X POST https://slug.techtenstein.com/ \
-H "Content-Type: application/json" \
-d '{"text":"Post-based ✨ input","max":30}'
{"slug":"post-based-input","length":16}
1000 requests/day per IP free. $2/mo unlimited on Gumroad.
pip install techtenstein-slug-mcp # Or: docker run sathvickollu/techtenstein-slug
Run as an Apify Actor: apify.com/sathvic_kollu/techtenstein-slug
Built by Techtenstein Pvt Ltd