← Techtenstein docs

Slug API

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.

Quick try

curl "https://slug.techtenstein.com/?text=Hello%20World%202026"
{"slug":"hello-world-2026","length":16,"processing_ms":0}

Unicode

curl "https://slug.techtenstein.com/?text=M%C3%BCnchen%20Stra%C3%9Fe%20caf%C3%A9%20se%C3%B1or"
{"slug":"muenchen-strasse-cafe-senor"}

Parameters

POST

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}

Rate limit

1000 requests/day per IP free. $2/mo unlimited on Gumroad.

MCP server

pip install techtenstein-slug-mcp
# Or: docker run sathvickollu/techtenstein-slug

Apify Actor

Run as an Apify Actor: apify.com/sathvic_kollu/techtenstein-slug

Built by Techtenstein Pvt Ltd