Text Slugifier

This endpoint converts a given text into a URL-friendly slug by transforming it to lowercase, removing special characters, and replacing spaces with hyphens.

Endpoint

  • URL: https://api.erensko.xyz/v1/text-slugifier

  • Method: GET

  • Description: Slugifies a specific text.

URL Parameters

Key
Value

text

The text you would like to slugify.

Headers

Key
Value

Authorization

Your own personal API key, create one by clicking here. This is required.

Request Example

GET https://api.erensko.xyz/v1/text-slugifier?text=Erensko API Info

Response Example

{
    "slugifiedText": "erensko-api-info"
}

Last updated