Catalog/text-slugify

Text

Slugify text (URL slug) API

Turn text into a clean URL slug: lowercase, accents removed, non-alphanumerics replaced with a separator. Answers 'slugify this title', 'make a URL slug', 'create a permalink'.

Price$0.01per request
MethodPOST
Route/v1/text/slugify
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
textslugslugifyurlpermalinkseo
API URLhttps://x402.hexl.dev/v1/text/slugify
Integration docs
Example request
{
  "text": "Héllo, World! (2026)"
}
Example response
{
  "slug": "hello-world-2026"
}
Input schema
{
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string"
    },
    "separator": {
      "type": "string",
      "default": "-"
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "slug"
  ],
  "properties": {
    "slug": {
      "type": "string"
    }
  }
}