Skip to content

Text Slugify


Slugify a text

POST /api/text/slugify
Terminal window
https://api.cookie-api.com/api/text/slugify


{
"text": "text to be slugified"
}

curl --location 'https://api.cookie-api.com/api/text/slugify' \
--header 'Authorization: API_Key' \
--header 'Content-Type: application/json' \
--data '{
"text": "Very cööl text"
}'
Responses
{
"slug": "very-cool-text",
"success": true
}